How to change default redirect URL of Laravel 5 Auth filter?(如何更改 Laravel 5 Auth 过滤器的默认重定向 URL?)
问题描述
默认情况下,如果我没有登录并尝试在浏览器中访问它:
By default if I am not logged and I try visit this in browser:
http://localhost:8000/home
它将我重定向到 http://localhost:8000/auth/login
如何更改以将我重定向到 http://localhost:8000/login
How can I change to redirect me to http://localhost:8000/login
推荐答案
我想在 Laravel 5.5 中做同样的事情.处理身份验证已移至 IlluminateAuthMiddlewareAuthenticate
,这会引发 IlluminateAuthAuthenticationException
.
I wanted to do the same thing in Laravel 5.5. Handling authentication has moved to IlluminateAuthMiddlewareAuthenticate
which throws an IlluminateAuthAuthenticationException
.
那个异常在IlluminateFoundationExceptionsHander.php
中处理,但是你不想改变原来的vendor文件,所以你可以用你自己的项目文件通过添加覆盖它它到 AppExceptionsHandler.php
.
That exception is handled in IlluminateFoundationExceptionsHander.php
, but you don't want to change the original vendor files, so you can overwrite it with your own project files by adding it to AppExceptionsHandler.php
.
为此,将以下内容添加到 AppExceptionsHandler.php
中 Handler
类的顶部:
To do this, add the following to the top of the Handler
class in AppExceptionsHandler.php
:
use IlluminateAuthAuthenticationException;
然后添加以下方法,根据需要进行
And then add the following method, editing as necessary:
/**
* Convert an authentication exception into an unauthenticated response.
*
* @param IlluminateHttpRequest $request
* @param IlluminateAuthAuthenticationException $exception
* @return IlluminateHttpResponse
*/
protected function unauthenticated($request, AuthenticationException $exception)
{
if ($request->expectsJson()) {
return response()->json(['error' => 'Unauthenticated.'], 401);
}
return redirect()->guest('login'); //<----- Change this
}
只需将 return redirect()->guest('login');
改为 return redirect()->guest(route('auth.login'));
或其他任何东西.
Just change return redirect()->guest('login');
to return redirect()->guest(route('auth.login'));
or anything else.
我想把它写下来,因为我花了 5 多分钟才弄明白.如果您碰巧在文档中找到了这个,请给我留言,因为我找不到.
I wanted to write this down because it took me more than 5 minutes to figure it out. Please drop me a line if you happened to find this in the docs because I couldn't.
这篇关于如何更改 Laravel 5 Auth 过滤器的默认重定向 URL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何更改 Laravel 5 Auth 过滤器的默认重定向 URL?
- PHP - if 语句中的倒序 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01