与Laravel 4.1.31中的公用文件夹路由冲突

时间:2018-02-19 13:37:28

标签: php laravel laravel-4 routes vhosts

我的app/routes.php中有一条路线,即

Route::get('sitemap', [
  'as' => 'sitemap', 
  'uses' => 'PageController@sitemap'
]);

sitemap.xml文件夹中的public/

当我点击网址http://example.com/sitemap时,它会返回用public/sitemap.xml写的内容,而不是从app/routes.php执行指定的路由 虽然,http://example.com/index.php/sitemap工作正常。

我需要标准的解决方案。

0 个答案:

没有答案