转载

nginx 实现 ajax 跨域请求

AJAX从一个域请求另一个域会有跨域的问题。那么如何在nginx上实现ajax跨域请求呢?要在nginx上启用跨域请求,需要添加add_header Access-Control*指令。如下所示:

location /{  add_header 'Access-Control-Allow-Origin' 'http://other.subdomain.com';  add_header 'Access-Control-Allow-Credentials' 'true';  add_header 'Access-Control-Allow-Methods' 'GET';     ...  ...  the rest of your configuration here  ...  ...  }

释如下:

第一条指令:授权从other.subdomain.com的请求

第二条指令:当该标志为真时,响应于该请求是否可以被暴露

第三天指令:指定请求的方法,可以是GET,POST等

如果需要允许来自任何域的访问,可以这样配置:

Access-Control-Allow-Origin: *

重启nginx

service nginx reload

ajax跨域请求测试

成功时,响应头是如下所示:

HTTP/1.1 200 OK Server: nginx Access-Control-Allow-Origin: other.subdomain.com

http://blog.hackroad.com/operations-engineer/linux_server/13011.html

原文  http://www.nginx.cn/4314.html
正文到此结束
Loading...