如果我鍵入example.com,它將按照我的意願重定向到https://example.com。但是打字http://example.com/blog當它仍然重定向到https://example.com將HTTP重定向到所有頁面的HTTPS
<rewrite>
<rules>
<clear/>
<rule name="Force HTTPS" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true"/>
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" appendQueryString="false" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
我怎樣才能使HTTPS添加到任何用戶寫的嗎?
你在這裏試過了嗎? http://stackoverflow.com/a/47095/993547 –
是的。我已經添加了出站規則,現在仍然是,它重定向到根 – crystyxn
請嘗試此http://stackoverflow.com/questions/32523540/http-to-https-rewrite-too-many-redirect-loops-iis-7有關詳細信息,請按照此文章http://www.hanselman.com/blog/HowToEnableHTTPStrictTransportSecurityHSTSInIIS7.aspx –