我有laravel 5.3的全新安装,每次使用路线时都会收到此错误。 " RouteCollection.php第161行"中的NotFoundHttpException; ...... ......
我使用了php artisan make:auth并创建了登录和注册。但仍然没有工作(在laravel 5.3中)。
之后我将xampp更新到最新版本并安装了laravel 5.4, 现在,我收到了另一行的错误消息," 179"
这是我的路线档案
Route::get('/', function () {
return view('welcome');
});
Route::get('/chat', function () {
return view('chat');
});
我在view / chat.blade.php中有一个视图
--------+----------+----------+------+---------+--------------+
| Domain | Method | URI | Name | Action | Middleware |
+--------+----------+----------+------+---------+--------------+
| | GET|HEAD | / | | Closure | web |
| | GET|HEAD | api/user | | Closure | api,auth:api |
| | GET|HEAD | chat | | Closure | web |
+--------+----------+----------+------+---------+--------------+
我可能会遗漏一些东西。 请有人解释一下,谢谢
答案 0 :(得分:0)
清除路由缓存
php artisan route:cache
然后你可以通过
查看你的路线php artisan route:list
答案 1 :(得分:0)
对于主动登录/注册,您需要将auth路由添加到routes / web.php
Auth::routes();