【发布时间】:2012-06-15 21:07:02
【问题描述】:
使用 IIS 7.5 如何重定向
http://localhost/en/test?id=tool-37
到
http://localhost/en/tool/37
我写了这条规则,但它不起作用
<rule name="Tool-Diseases" stopProcessing="true">
<match url="(.+)/test.+id=([0-9]+)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Redirect" url="{R:1}/tool/{R:2}" appendQueryString="true" />
</rule>
谢谢
【问题讨论】:
标签: iis url-rewriting iis-7.5