adm.aaa.com 網(wǎng)頁(yè)無(wú)法正常運(yùn)作
adm.aaa.com 將您重定向的次數(shù)過(guò)多。
嘗試清除 Cookie.
ERR_TOO_MANY_REDIRECTS
目前能注冊(cè),已經(jīng)看到表中注冊(cè)的數(shù)據(jù),但是注冊(cè)后跳轉(zhuǎn)就顯示以上錯(cuò)誤,不知道哪位朋友遇見(jiàn)過(guò)相應(yīng)問(wèn)題,給點(diǎn)提示?
樓上的朋友,以下是我的路由
Route::group(['domain' => 'adm.aaa.com', 'middleware' => 'web'], function () {
Route::get('/login', 'Auth\Admin\AuthController@showLoginForm');
Route::post('/login', 'Auth\Admin\AuthController@login');
Route::get('/logout', 'Auth\Admin\AuthController@logout');
Route::get('/register', 'Auth\Admin\AuthController@showRegistrationForm');
Route::post('/register', 'Auth\Admin\AuthController@register');
Route::get('/password/reset/{token?}', 'Auth\Admin\PasswordController@showResetForm');
Route::post('/password/email', 'Auth\Admin\PasswordController@sendResetLinkEmail');
Route::post('/password/reset', 'Auth\Admin\PasswordController@reset');
Route::group(['middleware' => ['auth']], function () {
Route::get('/',['as'=>'adm.index','uses'=>'Web\U\Admin\Index@index']);
});