SSL证书、代码签名证书、文档签名、WHQL 认证服务提供商

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

2015-09-21, 发表于【行业常识】

在不少的企业当中,网站设计出于安全的考虑使用了https协议,但同时公司也开放了80协议,不少用户因为输入网址的习惯不喜欢带上https协议,我们可以通过微软的URL 重写模块实现http://www.sslzhengshu.com 跳转到 https://www.sslzhengshu.com。

1、下载安装URL重写模块:Microsoft URL Rewrite Module

32位:http://download.microsoft.com/download/4/9/C/49CD28DB-4AA6-4A51-9437-AA001221F606/rewrite_x86_zh-CN.msi

64位:http://download.microsoft.com/download/4/E/7/4E7ECE9A-DF55-4F90-A354-B497072BDE0A/rewrite_x64_zh-CN.msi

2、取消勾选“SSL设置”-》“要求 SSL”

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

3、ASP.NET站可直接修改web.config(与“6、IIS配置图示”效果相同),例如:见<rewrite>...</rewrite>节点


<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <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>
</configuration>

4、IIS配置图示(图形化的操作过程,与上步效果相同,适用于asp/php等站)

选择要配置的网站,如:IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS,找到“URL重写”,没有的话看上面第3步

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

进入“URL重写”模块,点击“添加规则”

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

选择“空白规则”

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

名称:HTTP to HTTPS redirect

模式:(.*)

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

条件输入:{HTTP}

模式:off 或 ^OFF$

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS 或 

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

重定向类型:已找到(302) 或 参阅其它(303)

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

配置完成后“应用”到当前站点:

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

URL重写配置结果:

IIS7 / IIS7.5 URL 重写 HTTP 重定向到 HTTPS

至此配置完成!

参考网站:

http://www.iis-aid.com/articles/how_to_guides/redirect_http_to_https_iis_7

http://www.jppinto.com/2010/03/automatically-redirect-http-requests-to-https-on-iis7-using-url-rewrite-2-0/

http://webactivedirectory.com/iis-microsoft/redirect-http-to-https-on-microsoft-iis-7-and-7-5/

http://blog.csdn.net/xuhuojun/article/details/6137154