使用MSDN提供的DLL在WEB.CONFIG里面设置跳转.现在我有如下2个跳转:    <rewrite url="~/blog/index/(.*)" to="~/bloglist.aspx?page=$1" />
    <rewrite url="~/blog" to="~/bloglist.aspx?page=1" />
意思是当URL为/blog的时候,就默认为第一页,只有有index的时候,才读取页数但是我现在用了第二句,就直接把第一句忽略了.估计是因为前面都相同~/blog,当url为 blog/index/2时,就直接匹配成/blog,而忽略了后面的参数如果我把 <rewrite url="~/blog" to="~/bloglist.aspx?page=1" />删了,就能正常匹配了.现在能有什么办法实现这个需求么?