通过忽略web.config中的参数将Url重定向到新的Url

时间:2017-07-24 12:07:57

标签: asp.net redirect iis web-config

我想将旧网址(../ Galary.aspx?cat = 10)重定向到新网址(../ jacket-style-gallery)但它附加旧参数。

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

所以重定向到“../ jacket-style-gallery?cat = 10”

1 个答案:

答案 0 :(得分:0)

如果您只想要<activity android:name=".AnyActivity" android:noHistory="true" />

要重定向,那么你应该使用:

Galary.aspx

我刚刚在我的服务器上测试过它。