在web.config
我添加了一条重写规则,所有工作都在添加& sendto
部分中的字符
<RewriterRule>
<LookFor>.*-p(.\d+)-news</LookFor>
<SendTo>~/default.aspx?articleid=$1</SendTo>
</RewriterRule>
它有效,但是当我在<SendTo>
重写时添加更多GET paramatere根本不起作用。
<RewriterRule>
<LookFor>.*-p(.\d+)-news</LookFor>
<SendTo>~/default.aspx?articleid=$1&tabid=112312</SendTo>
</RewriterRule>