我试图强迫任何用户通过调用我的网站
路由通过
自动地。
我在 web.config 中添加了以下标记:
<rewrite>
<rules>
http:// to https:// rule
<rule name="ForceHttpsBilling" stopProcessing="true">
<match url="(.*)billing/(.*)" ignoreCase="true" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="false" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}{REQUEST_URI}" />
</rule>
</rules>
</rewrite>
我在 type="redirect" 行收到一条消息:
需要模块资格
我猜这意味着我需要引用一个程序集,或者“重写”节点需要位于另一个父节点下,但无法弄清楚/从谷歌获得答案。
该项目是 ASP.Net,并使用 .Net 4.0 在 IIS7 中托管