我在我的MVC应用程序中使用HTTP到HTTPS重定向。
这是我在Web.config中使用的代码:
<rewrite>
<rules>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}"/>
</rule>
</rules>
</rewrite>
我的应用程序中有一个页面不能在HTTPS上运行,因此我需要为此规则添加一个例外。
我想知道是否有人可以帮助我,或者向我展示一些教程/示例。
答案 0 :(得分:0)
您只需要添加另一个否定您的网址规则的条件。你的新规则是这样的:
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
<add input="{R:1}" pattern="myfolder\/myfile\.aspx" negate="true"/>
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}"/>
</rule>