跨域中间件

你可以在 config/authload/crossorigin.php 进行相关的跨域配置

默认配置如下:

declare(strict_types=1);

return [
    'allow_domain_list' => [
        "http://127.0.0.1:8080",
        "http://localhost:8080",
    ],
    'allow_request_type' => [
        'POST'
    ],
    'allow_headers' => [
        'x-requested-with', 'DNT', 'Keep-Alive', 'User-Agent', 'Cache-Control', 'Content-Type', 'Authorization', 'Origin', 'X-Requested-With', 'Accept', 'Referer'
    ],
    'allow_credentials' => 'true',
];

results matching ""

    No results matching ""