IIS8 自动跳转到HTTPS

Posted you000bbs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IIS8 自动跳转到HTTPS相关的知识,希望对你有一定的参考价值。

1.安装URL REWRITE2 "伪静态模块"

2.

<rule name="https" stopProcessing="true">
     <match url="(.*)" />
     <conditions>
         <add input="{HTTPS}" pattern="off" />
     </conditions>
     <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Temporary" />
</rule>

 

以上是关于IIS8 自动跳转到HTTPS的主要内容,如果未能解决你的问题,请参考以下文章

怎么让http自动跳转https

IIS7 http自动跳转到https

http自动跳转到https

apache如何设置http自动跳转到https

如何让http自动跳转https

nginx配置http访问自动跳转到https