您访问 / login 或 / register 时,我遇到 NotFoundHttpException 错误 当我运行php artisan make:auth命令时,路由也会创建,但 / login 或 / register 不适合我,让我与你分享我的代码。
Web.php
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');
当我检查我的浏览器时,它会显示此错误
获取http://localhost/laravel5authprc/login 404(未找到)
答案 0 :(得分:2)
尝试访问http://localhost/laravel5authprc/index.php/login
如果可行,则需要在apache vHosts文件中设置虚拟主机
答案 1 :(得分:0)
可能有些东西是 NotFoundHttp ......
我建议:
尝试:
Route::group([ 'prefix' => 'laravel5authprc' ], function () {
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');
Route::get('/', 'HomeController@index')->name('home.alias');
});