找回密码
 立即注册

windows服务器IIS6 自动跳转到HTTPS配置教程

[复制链接]
发表于 2020-4-24 12:24:28 | 显示全部楼层 |阅读模式
苹果上架
windows服务器IIS6 自动跳转到HTTPS配置教程

1. IIS6中,站点属性-》目录安全性-》编辑中把“要求安全通道(SSL)”勾选上即可。
QQ截图20200424122306.png

2. 打开自己网站根目录, 例如 d:webroot,  在根目录新建一个名为  https.htm 的文件,内容如下:
  1. <html>
  2. <head><title>Redirecting...</title></head>
  3. <script language="JavaScript">
  4. function redirectHttpToHttps()
  5. {
  6.      var  httpURL= window.location.hostname + window.location.pathname +  window.location.search;
  7.      var httpsURL=  "https://" + httpURL;
  8.      window.location  = httpsURL;
  9. }
  10. redirectHttpToHttps();
  11. </script>
  12. <body>
  13. </body>
  14. </html>
复制代码


3.IIS6中, 站点属性 -》 自定义错误 -》选择 403.4 -》修改文件路径为  d:/webroot/https.htm
QQ截图20200424122405.png
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|一门开发者社区 ( 蜀ICP备17005078号-4 )

GMT+8, 2025-4-4 13:36 , Processed in 0.029394 second(s), 23 queries .

Powered by Discuz! X3.5

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表