iis6所有跳转代码

发布时间:2016/12/8 12:50:11 打印 字号:

<script type="text/javascript">  

    var url=window.location.href;  

    url=url.replace("http:","https:")  

    window.location.replace(url);</script>


<script type="text/javascript">

   var targetProtocol = "https:";    if (window.location.protocol != targetProtocol) window.location.href = targetProtocol +  window.location.href.substring(window.location.protocol.length);</script>



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

                    url = url.replace("http:", "https:");                    window.location.replace(url);

                }</script>


<script type="text/javascript">

   var targetProtocol = "https:";    if (window.location.protocol != targetProtocol) window.location.href = targetProtocol +  window.location.href.substring(window.location.protocol.length);</script>


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

                    url = url.replace("http:", "https:");                    window.location.replace(url);

                }</script>