登录/注册不正确后,Laravel Auth不会重定向回

时间:2019-08-19 15:53:53

标签: laravel laravel-5

我正在使用默认的Laravel 5.8身份验证模型。它工作正常,但是最近我注意到,在登录表单中输入错误的凭据后,它仍然将我重定向到主页,并且在角落里,浏览器询问我是否要保存密码等。一切看起来像是登录,但我没有。

如果我输入正确的信息,那么我将登录并且一切正常。

我一直在寻找解决方案,但是我能找到的所有东西都是在修改LoginController和RegisterController,我想我不想这样做,因为默认行为是我所需要的。所以问题一定在其他地方。

我不知道显示什么代码。我对可能相关的最佳猜测是:

web.php

Route::get('logout', 'Auth\LoginController@logout');

Auth::routes(['verify' => true]);

app / Http / Kernel.php中间件组


protected $middlewareGroups = [
        'web' => [
            \App\Http\Middleware\EncryptCookies::class,
            \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
            \Illuminate\Session\Middleware\StartSession::class,
            // \Illuminate\Session\Middleware\AuthenticateSession::class,
            \Illuminate\View\Middleware\ShareErrorsFromSession::class,
            \App\Http\Middleware\VerifyCsrfToken::class,
            \Illuminate\Routing\Middleware\SubstituteBindings::class,
        ],

        'admin' => [
            \App\Http\Middleware\Administrator::class,
        ],

        'api' => [
            'throttle:60,1',
            'bindings',
        ],
    ];

我希望的是:错误的登录/注册后将重定向到同一页面。

1 个答案:

答案 0 :(得分:1)

问题是我有这个

<meta name=“referrer" content=“origin”>

在我的html中