apache   url   重写

apache   url   重写

我的server 是 apache + tomcat
域名是 testpai.com 申请了泛域名
*.testpai.com 都可以访问我的网站
我想 才所有的 *.testpai.com 都重定向到 www.testpai.com 上来
同时 url 要改写成 www.testpai.com
请问 http.conf 配置

RewriteCond %{HTTP_HOST} ^[a-zA-Z0-9\-]+\.testpai\.com$

RewriteRule ^/?$ /%{HTTP_HOST}

RewriteRule ^/www\.testpai\.com/?$ /index.jsp [R=301]

可以访问到www.testpai.com 但是 url 不能改写

谢谢
规则写得很乱,试试这个:
RewriteCond %{HTTP_HOST} ^.+\.testpai\.com$
RewriteCond %{HTTP_HOST} ! ^www\.testpai\.com$
RewriteRule ^/?$ http://www.testapi.com/index.jsp [RL]