政府今年開始慢慢全面導入 HTTPS 安全連線了,因此這設定很常使用到,將這設定紀錄在此,方便一些朋友查看。
以下這方式是透過 IIS 伺服器的 URL Rewrite 來導向的,因此需要再 IIS 上擴充這模組,然後按照以下的 web.config 內容去修改,詳細的參數說明可以參照 Microsoft 說明
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <system.webServer> <rewrite> <rules> <rule name="HTTP to HTTPS redirect" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTP_HOST}" pattern="(\.com\.tw|\.gov\.tw)$" /> <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 應該都是一樣的,不管是雲端平台還是自己架設的伺服器都是如此喔。