2014-01-07 39 views
2

當我嘗試重定向到querystring中具有多於1個參數的另一個頁面時,出現錯誤。帶有1個以上參數的IIS重定向

這工作:

<rule name="t6" stopProcessing="true"> 
    <match url="^test.html$" /> 
    <action type="Redirect" url="mypage.aspx?param=1" redirectType="Permanent" /> 
</rule> 

這不起作用:

<rule name="t6" stopProcessing="true"> 
    <match url="^test.html$" /> 
    <action type="Redirect" url="mypage.aspx?param=1&param2=2" redirectType="Permanent" /> 
</rule> 

你能弄清楚是怎麼回事?

感謝,

阿曼

回答