如何使用IIS将网址重定向到其他网址? 例如: 我得到了 http://www.aplusprint.co.nz/List.asp?id=58 希望重定向到 https://eshop.aplusprint.co.nz/product/wall-flag/
我希望一对一重定向,这意味着当id更改时,新的url将会改变。
我创建了一个测试重写规则,但没有工作
<configuration>
<system.web>
<identity impersonate="true" />
<httpRuntime maxRequestLength="8192" />
</system.web>
<system.webServer>
<rewrite>
<rules>
<rule name="wall_mounted_flag" patternSyntax="ExactMatch" stopProcessing="true">
<match url="List.asp?id=58" />
<action type="Redirect" url="https://eshop.aplusprint.co.nz/product/wall-flag/" appendQueryString="false" />
</rule>
</rules>
</rewrite>
<httpErrors errorMode="Detailed" />
</system.webServer>
任何人都可以帮助我?
答案 0 :(得分:0)
好的,我找到了。
<rule name="wall_mounted_flag" patternSyntax="ExactMatch" stopProcessing="true">
<match url="List.asp" />
<action type="Redirect" url="https://eshop.aplusprint.co.nz/product/wall-flag/" appendQueryString="false" />
<conditions>
<add input="{QUERY_STRING}" pattern="id=58" />
</conditions>
</rule>
需要条件