서버에 배포 한 후 Laravel 5.1.35 인증이 작동하지 않습니다. 지역 환경에서 잘 작동하는 동안.Laravel 5.1 로컬 환경에서 인증 작업이 제대로 수행되지 않음
기본적으로 로그인 성공은 '/ home'으로 리디렉션되고/home 라우팅 처리기 Auth :: check()은 false를 반환합니다.
Route::get('/home', function() {
var_dump(Auth::user());
});
위 코드는 bool (false)를 인쇄합니다.
완패 코드 :
Route::get('/logout', 'Auth\[email protected]');
Route::get('/login', 'Auth\[email protected]');
Route::get('/home', function() {
var_dump(Auth::user());
});
Route::post('auth/login', 'Auth\[email protected]');
Route::get('/login/{param}', 'Auth\[email protected]');
Route::get('/register', 'Auth\[email protected]');
Route::get('/signup', 'Auth\[email protected]');
Route::post('/auth/stepOne', 'Auth\[email protected]');
Route::post('/auth/stepTwo', 'Auth\[email protected]');
Route::post('/auth/stepTwoBrand', 'Auth\[email protected]');
Route::post('/auth/register', 'Auth\[email protected]');