IIS7 http自动跳转到https
程序员文章站
2022-03-18 23:45:37
1.下载安装URL重写模块:Microsoft URL Rewrite Module
32位:http://download.microsoft.com/download/4/9...
1.下载安装URL重写模块:Microsoft URL Rewrite Module
2.站点的SSL设置,不要勾选(很重要)
3.Web.config添加配置节点,以重定向到https
<system.webServer> <rewrite> <rules> <rule name="HTTP to HTTPS redirect" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true" /> </conditions> <action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" /> </rule> </rules> </rewrite> </system.webServer>以上config配置会自动生成配置到iis站点中,到此即完成了自动的跳转配置。
推荐阅读
-
Apache由http自动跳转到https的多种方法
-
如何禁止chrome浏览器http自动转成https 【转】
-
详解NGINX访问https跳转到http的解决方法
-
nginx强制使用https访问的方法(http跳转到https)
-
Tomcat配置https并访问http自动跳转至https
-
IIS (安装SSL证书后) 实现 HTTP 自动跳转到 HTTPS
-
IIS7/IIS7.5 URL 重写 HTTP 重定向到 HTTPS的方法
-
nginx 与 jboss 配置http自动跳转https
-
Chrome 将自动阻止 https页面加载 http资源
-
IIS7 http自动跳转到https