网址http换成https ----js

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

  

原文地址:https://www.cnblogs.com/jingzi111/p/5735589.html