我的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
工作正常。
我需要标准的解决方案。