主页 > 知识库 > Nginx跨域设置Access-Control-Allow-Origin无效的解决办法

Nginx跨域设置Access-Control-Allow-Origin无效的解决办法

热门标签:申请400电话号码多少钱 辽宁电销平台外呼系统软件 菏泽crm外呼系统价格 百应电销机器人靠谱吗 营销电销机器人招商 如何在各种地图标注自己的地址 信阳销售外呼系统招商 物超所值的400电话申请 coreldraw地图标注

nginx 版本 1.11.3

使用大家说的以下配置,验证无效,跨域问题仍然存在

add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET,POST';

使用以下配置,生效。

if ($request_method = 'OPTIONS') {
        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
        add_header 'Access-Control-Max-Age' 1728000;
        add_header 'Content-Type' 'text/plain charset=UTF-8';
        add_header 'Content-Length' 0;
        return 204;
       }
       if ($request_method = 'POST') {
        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
       }
       if ($request_method = 'GET') {
        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
       }

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。如果你想了解更多相关内容请查看下面相关链接

标签:江西 厦门 内江 江门 湖北 玉树 泸州 泰安

巨人网络通讯声明:本文标题《Nginx跨域设置Access-Control-Allow-Origin无效的解决办法》,本文关键词  Nginx,跨域,设置,Access-Control-Allow-Origin,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《Nginx跨域设置Access-Control-Allow-Origin无效的解决办法》相关的同类信息!
  • 本页收集关于Nginx跨域设置Access-Control-Allow-Origin无效的解决办法的相关信息资讯供网民参考!
  • 推荐文章