使用重写模块在 IIS7 上使用以下规则时获取重定向循环。
<rule name="redirect" stopProcessing="true">
<match url="test" />
<conditions>
<add input="{HTTP_HOST}" pattern="domain.com$" />
</conditions>
<action type="Redirect" url="http://www.domain.com/new/test" appendQueryString="false" redirectType="Permanent" />
</rule>
有任何想法吗?
谢谢