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的主要内容,如果未能解决你的问题,请参考以下文章