在网页head头部加上以下这段代码,如果用户访问了如http://,会被重定向到https://。如果想反过来,即把HTTPS强制重定向到HTTP,把targetProtocol的值改成http就行。
[cce] <script type="text/javascript"> var targetProtocol = "https:"; if (window.location.protocol != targetProtocol) window.location.href = targetProtocol + window.location.href.substring(window.location.protocol.length); </script> [/cce]