http 转hhttps

Posted MAKE-IN-中国

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http 转hhttps相关的知识,希望对你有一定的参考价值。

window.onload = function(){
    /*页面强转开始*/
    var tmpTag = ‘https:‘ == document.location.protocol ? false : true;

    if(tmpTag){
        var urls=window.location.href;
        urls = urls.replace("http", "https");
        window.location=urls;
    }
    /*页面强转结束*/
}

  https 转http

window.onload = function(){
    /*页面强转开始*/
    var tmpTag = ‘http:‘ == document.location.protocol ? false : true;

    if(tmpTag){
        var urls=window.location.href;
        urls = urls.replace("https", "http");
        window.location=urls;
    }
    /*页面强转结束*/
}

以上是关于http 转hhttps的主要内容,如果未能解决你的问题,请参考以下文章