公司部署了个新的 IIS 站点,需要强制在 Https 下面访问,但是又不希望关掉80端口的 Http 请求,这样对用户体验来讲不好,最好是能强制所有的 Http 请求都会被重定向到 Https 上面去,显然, IIS 自带的 “HTTP Redirect” 已经不能满足这个需求,我们这里使用 IIS 7.0 下面的重定向扩展 URL Rewrite Module 来做。

1. http://www.iis.net/download/URLRewrite 到这里下载,有分 32 和 64 位版本。
2. 安装完后,可以在 IIS 站点管理的根目录下面看到多了个 URL Rewrite。

  1. 双击打开,你会看到一个规则配置的页面。
  2. 点击 “Add Rules” 添加规则,选择默认的”Blank Rule” 作为模板。
  3. 在规则名字这一栏输入 “Redirect to HTTPS”。
  4. 展开 “Match URL” 这个小三角,按如下设定:

Requested URL: Matches the Pattern
Using: Regular Expressions
Pattern: (.*)

  1. 在 “Conditions” 这里,点击 “Add…”。
  2. 按以下设定输入:

Condition Input: {HTTPS}
Check if input string: Matches the Pattern
Pattern: ^OFF$

  1. 完成后入下图所示。
  2. 最后一步就是重定向的设置了。
  1. 点击右边的 “Apply” 应用,设置完成。

    补充: 因为本地的 IIS 还有个 Web Service 需要调用http://localhost/directory/service.asmx, 如上设置后,会被重定向去 http://localhost/directory/service.asmx, 而由于SSL证书匹配的关系,这个Web Service调用会出错,所以我后来又再加上了个例外条件,使得本地的 localhost 调用请求不再转向 HTTPS。

  2. 在”Conditions”这里,点击 “Add…”。
  3. 按以下设定输入,然后点击 Move Up 使其成为第一个条件
    • Condition Input: {HTTPS_HOST}
    • Check if input string: Does Not Matches the Pattern
    • Pattern: ^(localhost)
  4. 最后设定完成如图。
  5. 在 web.config 里面你也可以看到最终的设置结果