请教apache rewrite (Proxy)

请教apache rewrite (Proxy)

1、根据用户登陆名可访问的黄页地址
访  问  地  址:[url=http://(\w+).cn.xxxx.com/([a-zA-Z]+)/([a-zA-Z]+).html]http://(\w+).cn.xxxx.com/([a-zA-Z]+)/([a-zA-Z]+).html[/url]
重定向访问地址:http://user.cn.xxxx.com/b2b/mps/user/screen/$2,$3.html?username=$1
参  数  说  名:$1:用户登陆名,数字与字母组成
                 $2:模块目录结构名,字母组成
                 $3:模块文件名称,字母组成
例:访  问  地  址:http://testuser.cn.xxxx.com/corp/introduce.html
     重定向访问地址:http://user.cn.xxxx.com/b2b/mps/user/screen/corp,introduce.html?username=testuser

2、目前的规则

RewriteEngine On
RewriteLog logs/mod_rewrite.log
RewriteLogLevel 0
<roxy *>
Order deny,allow
Allow from all
</Proxy>

RewriteCond %{HTTP_HOST} ^[a-z0-9\-]+\.cn\.xxxx\.com/([a-zA-Z]+)/([a-zA-Z]+)\.html$
RewriteRule ^/?$ http://%{SERVER_NAME}/$1
RewriteRule ^/([a-zA-Z]+)/([a-zA-Z]+)\.html$ http://user.cn.xxxx.com/b2b/mps/user/screen/$1,$2.html?username=$1 [P]

3、问题:
    以上1,2为需求及rewrite代码,但rewrite规则不对,无法$3,没有实现需求,请各位赐教,谢谢,非常感谢!
    现在访问http://testuser.cn.xxxx.com/corp/introduce.html  能跳转到http://user.cn.xxxx.com/b2b/mps/user/screen/corp,introduce.html?username=
    而且IE地址栏不变(即[P]),但username=无法得到,请各位帮忙。
已解决


有问,有结果,没有回答。。。