存档

文章标签 ‘跨域’

nginx解决跨域

2017年1月22日 5 条评论

什么是跨域? 使用js获取数据时,涉及到的两个url只要协议、域名、端口有任何一个不同,都被当作是不同的域,相互访问就会有跨域问题。 例如客户端的域名是www.redis.com.cn,而请求的域名是markdown.com.cn 如果直接使用ajax访问,会有以下错误 XMLHttpRequest cannot load http://www.redis.com.cn/server.php. No 'Access-Control-Allow-Origin' header is present on the requested resource.Origin 'http://www.redis.com.cn' is therefore not allowed access. 如何解决跨域? 在服务器页面的Response header中加入如下内容,可以...

分类: nginx 标签: