我的网站的http和https版本的工作方式不同

我的网站的http和https版本的工作方式不同,http,web,https,Http,Web,Https,你能告诉我如何使我的网站的https版本像http版本一样工作吗 https只是部分起作用 谢谢 Arthttps不起作用,因为在您的代码中,您正在使用http请求资源 您需要确保所有永久链接和资源(图像、样式等)也来自https请求 例如,改变: <link rel="stylesheet" type="text/css" media="screen" href="http://sorenballard.com/wp-content/themes/sorenmountain/styl

你能告诉我如何使我的网站的https版本像http版本一样工作吗

https只是部分起作用

谢谢
Art

https不起作用,因为在您的代码中,您正在使用http请求资源

您需要确保所有永久链接和资源(图像、样式等)也来自https请求

例如,改变:

<link rel="stylesheet" type="text/css" media="screen" href="http://sorenballard.com/wp-content/themes/sorenmountain/style.css" />



感谢您的关注。所以页面上的所有http引用都可以简单地更改为https?考虑到您有https证书,是的。
<link rel="stylesheet" type="text/css" media="screen" href="https://sorenballard.com/wp-content/themes/sorenmountain/style.css" />