С 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>
Спасибо