我们希望从以下网址重定向用户
http://mywebsite.com/Account.asp?Number=25191108
到
http://anotherwebsite.com/Account/25191108
如果我们可以通过IIS级别或web.config
中的配置来完成,请告诉我答案 0 :(得分:0)
您可以在IIS中使用URL重写模块来实现此目的。您可以从here安装它。 在" system.webServer"下的web.config文件中添加以下规则。标签
如果它破裂或者您对此有任何疑问,请告诉我。
<rewrite>
<rules>
<clear />
<rule name="sample2" stopProcessing="true">
<match url="(.*).asp(.*)Number=(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Redirect" url="http://anotherWebsite.com/{R:1}/{R:3}" redirectType="Temporary" />
</rule>
</rules>
</rewrite>