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

来源:互联网 发布:淘宝最新排名规则 编辑:程序博客网 时间:2024/06/05 00:20

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';             }

转载自:http://enable-cors.org/server_nginx.html



0 0
原创粉丝点击