Nginx配置跨域

在网页中请求其他域名数据时出现了No 'Access-Control-Allow-Origin' header is present on the requested resource错误时,基本上可以确定是跨域问题。 只要在返回数据的header中加入'Access-Control-Allow-Origin *就可以了。但是一些静态网页可以在Nginx转发的时候将header参数添加上去就可以了。

修改Nginx的配置,在需要的 location中添加

location / {  
    add_header Access-Control-Allow-Origin *;

    // 其他配置
} 
0%