1.我有两个链接<a href="hello.jsp?id=2&name=hi"></a>  和 <a href="server.jsp?id=22&name=hello"></a>
2.我想用urlrewrite把这两个链接都转换成静态页如:<a href="hello.jsp?id=2&name=hi"></a> 转 2_hi.html 和    <a href="server.jsp?id=22&name=hello"></a> 转 22_hello.html
我的urlrewrite.xml是这样配的。
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 3.1//EN"
        "http://tuckey.org/res/dtds/urlrewrite3.1.dtd">
<urlrewrite>
    <rule>
        <from>>^/([0-9]+)_([a-z]+).html$</from>
        <to>>/hello.jsp?id=$1&amp;name=$2</to>
    </rule>   <rule>
        <from>>^/([0-9]+)_([a-z]+).html$</from>
        <to>>/server.jsp?id=$1&amp;name=$2</to>
    </rule>
  </urlrewrite>
问:我提交的怎么都是一个jsp页面呢?用什么方法能把这两个链接分配到指定的映射上呢?谢了!