从 HTTPS 页面移动到 HTTP 页面会中断网站

Moving From HTTPS Page To HTTP Page Breaks The Website

我使用 iThemes Security (formerly Better WP Security) 在登录页面、管理页面和某些前端页面上强制使用 ssl。

例如,如果您转到 our contact page,然后在 firefox 或 opera 中单击主页,网站将会崩溃!

谁能帮我解决这个问题?

提前谢谢你。

我解决了:)

不正确W3 Total Cache configuration with ssl, for more information visit this article

感谢所有试图帮助我的人。

主页 link 采用 https://... 格式,其中一个是您通过常规 http 加载样式表的主页,因此浏览器会阻止它们。您有 2 个选择:

通过替换

强制主页 link 不使用 http
<a href="https://mostasharoon.org/" onclick="_gaq.push(['_trackEvent', 'outbound-widget-int', 'https://mostasharoon.org/', 'HOME']);">HOME</a>

<a href="http://mostasharoon.org/" onclick="_gaq.push(['_trackEvent', 'outbound-widget-int', 'https://mostasharoon.org/', 'HOME']);">HOME</a>

或者确保所有 CSS / JS 文件都通过主页上的 HTTPS 加载。