我正在开展laravel项目。 我添加了routes / api.php
Route::get('/lala', function (){
return "test";
});
除了:
之外,它没有显示任何内容RouteCollection.php第161行中的NotFoundHttpException:
我在routes / web.php中添加了
Route::get('/lala2', function (){
return "test2";
});
并且路线有效,我看到" test2"。
什么可能是问题?
答案 0 :(得分:4)
答案 1 :(得分:3)
答案 2 :(得分:1)
您可以在浏览器中从/lala
访问localhost:port/api/lala
。
您还可以在mapApiRoutes()
app/Providers/RouteServiceProvider.php
中更改“api”的前缀