我有419(很抱歉,您的会话已过期。请刷新并重试。)有时在其他浏览器中登录我的系统。浏览器
我已经尝试过这些,但仍然[[没有工作。
{{ csrf_field() }}
,@csrf
形式。SESSION_DOMAIN=xxx
添加到.env文件最后,我关闭了csrf验证。 419消失了,但是登录也失败了,并显示302错误。我没什么事,有人可以帮我吗?
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
class VerifyCsrfToken extends Middleware
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
'stripe/*',
'http://example.com/foo/bar',
'http://example.com/foo/*',
];
}