网站提示Mixed Content: The page at was loaded over HTTPS怎么解决?

2023-06-07 15:33:55 浏览数 (1)

当网站配置https访问方式后,某些功能无法使用,通过浏览器控制台查看报错提示为:

  • Mixed Content: The page at 'https://www.12564.cn/dubber/kind.shtml' was loaded over HTTPS, but requested an insecure script 'http://www.12564.cn/jquery/2.0.0/jquery.min.js'. This request has been blocked; the content must be served over HTTPS.

意思是:

  • 混合内容:“https://www.12564.cn/dubber/kind.shtml”页面是通过HTTPS加载的,但是请求了一个不安全的脚本“http://www.12564.cn/jquery/2.0.0/jquery.min.js”。此请求已被阻止;内容必须通过HTTPS提供。

如下图:

遇到这样的问题应该如何解决呢?其实很简单,找到报错对应的页面,在页面模板中引入如下 标签内容即可。

代码语言:javascript复制
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">

这样系统会自动将http的不安全请求修改为https请求,就不会在报错了。如果你遇到了这样的问题,就试试看吧。

0 人点赞