我使用IIS 8和URL重写模块(DB提供程序)。所以,当我在数据库中有这个规则
originalUrl - old/qwerty/test1
重定向到newURL - new/qwerty/test2
这很好用。服务器将我重定向到newURL,但是我可以在使用RegEx的数据库URL中使用吗?这样的事情old/qwerty/(*)
??
如何在URL重写模块中的数据库提供程序中使用RegEx规则?
这是我在web.config文件中的示例规则
<rules>
<rule name="DbProviderTest" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{DB_Redirect:{R:1}}" pattern="(.+)" />
</conditions>
<action type="Redirect" url="{C:1}" />
</rule>
</rules>