我需要创建重写规则,以使用包含以下内容的网址重定向所有网页:
/test1/id/
和
/test2/id/
为:
/p/id
到目前为止,我已尝试过:
<rule name="URL Redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{REQUEST_URI}" pattern="^test1\$" />
<add input="{URL}" pattern="^\test2\$" />
</conditions>
<action type="Redirect" url="/{R:1}" redirectType="Permanent" />
</rule>
有人可以帮助创建这样的规则吗?