这是laravel版本5.4,我正在使用api.php路由。以下是我的一条路线:
Route::group(['namespace' => 'Api'], function() {
Route::get('auth/test',function(){
return "asd";
});
});
即使我在web.php中写路由,它也会在所有路由上出错,它甚至没有加载主页:
http://localhost/bradforduniversityproject/public/
我也运行了以下命令:
php artisan route:clear
无论我在URL中写什么,只提供NotFoundHttpException都没有用。任何帮助可能是什么原因。谢谢!
以下是我的api.php文件:
Route::group(['namespace' => 'Api'], function() {
Route::get('auth/test2',function(){
return "asd";
});
Route::post('auth/test','Auth\LoginController@test');
Route::post('auth/login','Auth\LoginController@login');
Route::post('auth/register','Auth\LoginController@register');
Route::post('auth/forgotPassword','Auth\LoginController@forgotPassword');
});