http到https协议的变化在javascript中

时间:2017-03-07 10:54:08

标签: javascript

<html>
    <head>
    <script src="jquery-3.1.1.min.js"></script>
    <script>
     if (location.protocol != 'https:')
        {
         location.href = 'https:' + window.location.href.substring(window.location.protocol.length);
        }
    </script>
    </head>
    <body>
            <span class="sample">hi</span>
    </body>
</html>

我需要在url中更改协议。我将sample.html放在apache htdocs中。我正在使用http更改为https,但无法使用https访问网站。任何人都可以为我提供解决方案

0 个答案:

没有答案