当几个应用访问nginx服务器,而这几个应用与nginx不在同一个域名的时候,可能出现跨域问题

问题描述:
当几个应用访问nginx服务器,而这几个应用与nginx不在同一个域名的时候,可能出现跨域问题
前台报错信息:
XMLHttpRequest cannot load *
No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘*’ is therefore not allowed access.

简单解决方式:
在nginx配置文件nginx.conf中增加:
location /static/itest {
alias D:\SVN\project\products\iflytek-waiyan\usercenter\static\itest;
index index.html index.htm;
add_header ‘Access-Control-Allow-Origin’ *;
}

你可能感兴趣的:(nginx,nginx,xmlhttprequest,服务器,应用)