此代码有什么问题?
Auth::routes();
Route::get('/',function (){
return redirect('admin');
});
Route::get('login', ['as' => '/', 'uses' =>'Web\AuthController@showLoginPage']);
Route::get('register', ['as' => '/', 'uses'=>'Web\AuthController@showLoginPage']);
Route::prefix('admin')->group(function (){
Route::get('/','Web\AuthController@showLoginPage');
});
当我尝试点击http://localhost/restaurant/时,会将我重定向到http://localhost/restaurant/admin,但是问题出在此管理URL上,提示:
未找到在此未找到所请求的URL / restaurant / admin 服务器。
答案 0 :(得分:0)
请确保所有这些都对您有利-
您可以像这样在ubuntu上激活 rewrite 模块-
sudo a2enmod rewrite
然后重新启动apache-
sudo service apache2 restart
如果您使用的是Windows,请按照以下说明操作