gpt4 book ai didi

php - 如何在 Laravel 中为开发和生产使用不同的 Cors 配置

转载 作者:行者123 更新时间:2023-12-02 03:21:05 25 4
gpt4 key购买 nike

我在 Laravel 中为生产和开发设置不同的 cors 配置时遇到一些问题:

<?php

return [
/*
|--------------------------------------------------------------------------
| Laravel CORS
|--------------------------------------------------------------------------
|
| allowedOrigins, allowedHeaders and allowedMethods can be set to array('*')
| to accept any value.
|
*/
'supportsCredentials' => false,
'allowedOrigins' => ['https://www.example.com'],
'allowedHeaders' => ['*'],
'allowedMethods' => ['*'],
'exposedHeaders' => [],
'maxAge' => 0,
];

最佳答案

<?php
switch(env('APP_ENV')){
case 'development':
return [... config array ...];
break;

case 'staging':
return [... config array ...];
break;

case 'production':
return [... config array ...];
break;
}

关于php - 如何在 Laravel 中为开发和生产使用不同的 Cors 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54793005/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com