我使用规则将页面重定向到https。以下是web.config中的规则:
<rules>
<rule name="HTTPs Redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{ALL_HTTP}" matchType="Pattern"
pattern="HTTP_X_FORWARDED_PROTO:https" ignoreCase="true" negate="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rewrite>
此规则将所有页面重定向到https但我想重定向我的应用程序的某些页面,如果我有两个页面test.aspx和test1.aspx然后我想将test.aspx重定向到https和test1.aspx到HTTP。 怎么可能。
谢谢