【发布时间】:2014-01-25 18:28:25
【问题描述】:
当我尝试重定向到查询字符串中包含超过 1 个参数的另一个页面时,我收到错误消息。
这行得通:
<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¶m2=2" redirectType="Permanent" />
</rule>
你能弄清楚发生了什么吗?
谢谢,
阿曼多
【问题讨论】:
标签: asp.net iis http-redirect