0
1頁
我有一個規則IIS7 HTTPS重定向到http除了
<rule name="HTTPS to HTTP Redirect" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{HTTPS}" pattern="on" />
</conditions>
<action type="Redirect" url="http://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
</rule>
重定向ALL HTTPS到HTTP不過我現在需要1頁是HTTPS。
謝謝