码迷,mamicode.com
首页 > Web开发 > 详细

http升级为https后,静态资源失效和ajax请求跨域问题

时间:2019-03-25 16:22:57      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:ade   问题   request   很多   usr   tps   for   class   pre   

把http升级以后,一打开原本的网站,会发现很多静态资源失效了。

只需要在html页面加入:

<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">

2:ajax请求与显示跨域

当发送ajax请求时报错:

XMLHttpRequest cannot load 【ajax请求的服务器url】 No ‘Access-Control-Allow-Origin‘ header is present on the requested resource. Origin 【自己服务器】 is therefore not allowed access.

这个时候直接百度应该有很多种办法可以解决

我选择了在nginx中配置跨域支持功能;

还是在nginx.conf中加入代码:

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;

}

然后重启nginx服务器即可

重启nginx服务器命令:# /usr/local/nginx/sbin/nginx -s reload 

http升级为https后,静态资源失效和ajax请求跨域问题

标签:ade   问题   request   很多   usr   tps   for   class   pre   

原文地址:https://www.cnblogs.com/a565810497/p/10594264.html

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