0
<rule name="rd" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^test\.com$" negate="true" />
<add input="{HTTP_HOST}" pattern="^www.\test\.net$" negate="true" />
</conditions>
<action type="Redirect" url="https://test.com/{R:0}" redirectType="Permanent" />
</rule>
此代碼的工作WWW:重定向HTTPS WWW到https非在IIS
http://www.test.com => https://test.com
http://www.test.net=> https://test.com
但不工作時,網址爲:
https://www.test.com => https://test.com
https://www.test.net => https://test.com
有什麼問題?
感謝FOT幫助
如果你的條件之一是' ',它爲什麼會起作用? –
haim770
當url已經使用HTTPS時,整個規則根本就不適用 – haim770
我寫錯了,編輯過的帖子 – Ali