Laravel 5.1注销重定向无法正常工作

时间:2016-04-28 17:16:41

标签: php laravel model-view-controller

当我点击我的应用程序中的注销时,我被重定向到Laravel 5默认页面。我试图将URL切换到登录,而不是错误,我仍然被重定向到此默认页面。 这是我的AuthController中的代码

public function doLogout()
{
    Auth::logout();
    Session::flush();
     return Redirect::to('login');

还注册了我的routes.php

Route::get('auth/logout', 'Auth\AuthController@getLogout');

如何重定向到登录页面的任何想法。谢谢

1 个答案:

答案 0 :(得分:0)

你可以使用下面的课程

protected $redirectAfterLogout = 'auth/login';

“auth / login”是您可以更改的网址,这是laravel 5

doc:

https://laravel.com/docs/5.1/authentication