网页端如何默认为https访问

来自:互联网
时间:2018-08-19
阅读:

可以在有需要自动转到https的网页中在前加入以下代码:

<script language="JavaScript">
<!--
if(location.protocol == "http:")
        location.href=location.href.replace(/^http:/, "https:");
//-->
</script>
返回顶部
顶部