码迷,mamicode.com
首页 > Web开发 > 详细

IIS 配置Http重定向到Https

时间:2016-05-28 11:36:27      阅读:353      评论:0      收藏:0      [点我收藏+]

标签:

注意首先要安装url重定向模块
然后在web.config末尾添加如下代码
 <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>

IIS 配置Http重定向到Https

标签:

原文地址:http://www.cnblogs.com/wangchaozhi/p/5536889.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!