码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 解决跨域需要几行

时间:2019-03-15 14:29:47      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:option   content   get   type   oca   需要   ati   pos   gen   

在指定的主机location 下添加以下语句便可;

如:

location / {
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Methods ‘GET, POST, OPTIONS‘;
add_header Access-Control-Allow-Headers ‘DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested- With,If-Modified-Since,Cache-Control,Content-Type,Authorization‘;

if ($request_method = ‘OPTIONS‘) {
return 204;
}
}

nginx 解决跨域需要几行

标签:option   content   get   type   oca   需要   ati   pos   gen   

原文地址:https://blog.51cto.com/jxlwc/2363517

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!