【发布时间】:2018-11-12 20:44:50
【问题描述】:
你能告诉我如何使我的网站的 https 版本像 http 一样工作吗?
https 只是部分工作。
谢谢 艺术
【问题讨论】:
你能告诉我如何使我的网站的 https 版本像 http 一样工作吗?
https 只是部分工作。
谢谢 艺术
【问题讨论】:
https 不起作用,因为在您的代码中您正在使用 http 请求资源。
您需要确保所有永久链接和资源(图像、样式等)也来自 https 请求。
例如,改变:
<link rel="stylesheet" type="text/css" media="screen" href="http://sorenballard.com/wp-content/themes/sorenmountain/style.css" />
到
<link rel="stylesheet" type="text/css" media="screen" href="https://sorenballard.com/wp-content/themes/sorenmountain/style.css" />
【讨论】: