首页 > 其他 > 详细

nginx配置允许跨域请求

时间:2018-05-04 10:20:32      阅读:816      评论:0      收藏:0      [点我收藏+]
http {
......
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Headers X-Requested-With;
add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
......
}
这样就可以实现GET,POST,OPTIONS的跨域请求的支持
也可以 add_header Access-Control-Allow-Origin http://xxx.com; --指定允许的url;

配置项详细解释:w3c-Cross-Origin Resource Sharing

nginx配置允许跨域请求

原文:http://blog.51cto.com/haoyonghui/2112513

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!