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> 

 

posted @ 2016-08-19 15:59  一切随心走  阅读(1426)  评论(0编辑  收藏  举报