admin管理员组

文章数量:1130349

问题:was loaded over HTTPS,xxxx This request has been blocked; the content must be served over HTTPS.

解决方案一:
https页面只能访问https资源,将访问链接升级为https
解决方案二:
添加响应头 修改页面资源访问权限
nginx 配置
add_header Content-Security-Policy “upgrade-insecure-requests;connect-src *”;
解决方案三:
在Google浏览器设置->隐私和安全->允许显示不安全内容中添加要访问的链接。

问题:was loaded over HTTPS,xxxx This request has been blocked; the content must be served over HTTPS.

解决方案一:
https页面只能访问https资源,将访问链接升级为https
解决方案二:
添加响应头 修改页面资源访问权限
nginx 配置
add_header Content-Security-Policy “upgrade-insecure-requests;connect-src *”;
解决方案三:
在Google浏览器设置->隐私和安全->允许显示不安全内容中添加要访问的链接。

本文标签: 解决方案HTTPShttp