2017-07-24 58 views
0

我想將我的舊網址(../Galary.aspx?cat=10)改爲新網址(../ jacket-style-gallery)但它附加了舊的參數。將網址重定向到新網址忽略web.config中的參數

<rule name="rule9" stopProcessing="true"> 
    <match url="(.*)" /> 
    <conditions> 
    <add input="{QUERY_STRING}" pattern="cat=10" /> 
    </conditions> 
    <action type="Redirect" url="./jacket-style-gallery" appendQueryString="false"/> 
</rule> 

所以,如果你想只Galary.aspx

被重定向,那麼你應該使用它重定向到」 ../jacket-style-gallery?cat=10"

回答

0

<rule name="rule9" stopProcessing="true"> 
    <match url="Galary.aspx" /> 
    <conditions> 
    <add input="{QUERY_STRING}" pattern="cat=10" /> 
    </conditions> 
    <action type="Redirect" url="./jacket-style-gallery" appendQueryString="false"/> 
</rule> 

我剛剛在我的服務器上測試過,它工作正常。

相關問題