http跳转到https很慢怎么办

主机教程 建站分享 2年前 (2022-12-02) 182次浏览

文章摘要:http跳转到https很慢怎么办

通过在需要跳转的页面中添加以下代码,即可解决http跳转到https速度慢的问题。 <script ty […]

通过在需要跳转的页面中添加以下代码,即可解决http跳转到https速度慢的问题。

<script type="text/javascript">
var url = window.location.href;
if (url.indexOf("https") < 0) {
url = url.replace("http:", "https:");
window.location.replace(url);
}
</script>


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:http跳转到https很慢怎么办
文章链接:http://www.7966.org/post/13978.html
转载请注明出处

喜欢 (0)