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

一、購買SSL證書,參考: http://www.cnblogs.com/yipu/p/3722135.html

二、IIS7 / IIS 7.5 下綁定 HTTPS 網站(購買Wildcard SSL泛域名證書可綁定多個子域名)參考上文php

三、下載安裝URL重寫模塊:Microsoft URL Rewrite Modulehtml

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

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

四、取消勾選「SSL設置」-》「要求 SSL」post

五、ASP.NET站可直接修改web.config(與「六、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>
複製代碼

六、IIS配置圖示(圖形化的操做過程,與上步效果相同,適用於asp/php等站)ui

選擇要配置的網站,如:,找到「URL重寫」,沒有的話看上面第3步url

進入「URL重寫」模塊,點擊「添加規則」spa

選擇「空白規則」.net

名稱:HTTP to HTTPS redirect

模式:(.*)

條件輸入:{HTTP}

模式:off 或 ^OFF$

 或 

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

重定向類型:已找到(302) 或 參閱其它(303)

配置完成後「應用」到當前站點:

URL重寫配置結果:

至此配置完成!

參考網站:

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

 
 
標籤:  IIS
相關文章
相關標籤/搜索