http跳转到https很慢怎么办

lewis 2019-04-10 23次阅读

通过在需要跳转的页面中添加以下代码,即可解决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>



发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。