我在根據查詢字符串參數重定向到另一個URL時遇到了一些問題。我想這重定向進入www.domain.com/signup.aspx?p=1用戶:當他們進入IIS URL重寫模塊:基於查詢字符串重定向
www.domain.com/signup現在
<rule name="Signup Redirect 1" stopProcessing="true">
<match url="signup\.aspx\?p=1" />
<conditions logicalGrouping="MatchAll" />
<action type="Redirect" url="signup" redirectType="Temporary" />
</rule>
www.domain.com/ signup.aspx p = 2,他們必須去?
www.domain.com/signup/promocode
<rule name="Signup Redirect 2" stopProcessing="true">
<match url="signup\.aspx\?p=2" />
<conditions logicalGrouping="MatchAll" />
<action type="Redirect" url="signup/promocode" redirectType="Temporary" />
</rule>
以上規則不起作用。什麼是正確的方法來做到這一點?提前致謝。
的Gr
的Martijn
感謝它的工作! – 2010-02-14 11:41:11
這對我有用,併爲我節省了一天 - 謝謝 – Bala 2013-12-02 06:04:55