在laravel5.3裡 auth middleware 直接放在了illuminate裡 然後如果用戶未登入會執行
他預設跳轉的是/login 位址 我想修改跳轉位址到/user/login
5.2的話還比較能理解 5.3這邊是怎樣的一個實現?
在laravel5.3裡 auth middleware 直接放在了illuminate裡 然後如果用戶未登入會執行
他預設跳轉的是/login 位址 我想修改跳轉位址到/user/login
5.2的話還比較能理解 5.3這邊是怎樣的一個實現?
這個需要修改appExceptionsHandler.php文件,最下面有一個 unauthenticaticated
方法
<code>/** * Convert an authentication exception into an unauthenticated response. * * @param \Illuminate\Http\Request $request * @param \Illuminate\Auth\AuthenticationException $exception * @return \Illuminate\Http\Response */ protected function unauthenticated($request, AuthenticationException $exception) { if ($request->expectsJson()) { return response()->json(['error' => 'Unauthenticated.'], 401); } // 这里的login修改为user/login return redirect()->guest('login'); }</code>
自訂redirect?
<code>return redirect()->route('user.login');</code>