凡事都在事上磨,这样才能精进,成长进步提高! ------ 博客园首页

默认打开https网站

打开自己网站根目录, 例如 d:webroot,  在根目录新建一个名为  https.htm 的文件,内容如下:

<html>
<head><title>Redirecting...</title></head>
<script language="Javascript">
function redirectHttpToHttps()
{
    var  httpURL= window.location.hostname + window.location.pathname +  window.location.search;
    var httpsURL=  "https://" + httpURL;
    window.location  = httpsURL;
}
redirectHttpToHttps();
</script>
<body>
</body>
</html>
posted @ 2023-03-03 23:27  追风fc  阅读(239)  评论(0)    收藏  举报