简体   繁体   中英

Laravel 5.3 route auth not working on shared hosting

Auth not working on hostgetor shared hosting but it's working well on local. please help..

Route::get('admin', function () {
    return view('admin_template'); 
}); 
Route::auth();

Route::get('/admins', 'HomeController@index');

//Categories 
Route::get('/categories', 'CategoriesController@index');
Route::post('/addCategory', 'CategoriesController@store'); 

所有身份验证路由的内置构建器实际上是Auth::routes()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM