IIS 301将特定URL重定向到另一个特定URL

时间:2017-12-15 00:02:24

标签: asp.net redirect iis url-redirection

如何使用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>

任何人都可以帮助我?

1 个答案:

答案 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>

需要条件