中国站
帮助中心 > 安全 > SSL安全证书 > 证书安装 > IIS7 IIS8 自动跳转到HTTPS

IIS7 IIS8 自动跳转到HTTPS

IIS7需要先确认是否安装 “URL REWRITE2 ” 伪静态模块 , 如果您已经安装可以跳过

第一步: 选择站点, “URL 重写”,如果安装的是英文版的 应该是【Url rewrite】

第二步: 添加 “ 空白规则”

第三步:添加规则

名称 : HTTPS

匹配URL 模式: (.*)

添加条件: 条件: {HTTPS} 模式: off

操作类型选择:重定向

重定向URL: https://{HTTP_HOST}/{R:1}

然后保存即可

高级版(直接把伪静态添加到web.config)

  1. <?@xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <rewrite>
  5. <rules>
  6. <rule name="HTTP to HTTPS redirect" stopProcessing="true">
  7. <match url="(.*)" ></match>
  8. <conditions>
  9. <add input="{HTTPS}" pattern="off" ignoreCase="true" ></add>
  10. </conditions>
  11. <action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" ></action>
  12. </rule>
  13. </rules>
  14. </rewrite>
  15. </system.webServer>
  16. </configuration>