求助,rewrite之后jsp无法正常解析

# mod_caucho Resin Configuration
LoadModule caucho_module /usr/local/apache/modules/mod_caucho.so
ResinConfigServer localhost 6802
CauchoStatus yes

NameVirtualHost *:80
<VirtualHost *:80>
    DocumentRoot /home/httpdoc/yesite
    ServerName abc.com
    ServerAlias www.abc.com
    RewriteEngine on
    RewriteRule ^/index.html /index.jsp [L,PT]
    RewriteRule ^/news/index.html /news/news_index.jsp [L,PT]
</VirtualHost>

配置如上,访问abc.com,www.abc.com是正常的
但是访问其他域名,ddd.abc.com,ccc.abc.com显示的都是jsp的源码
DNS做了通配符*.abc.com都指向了这台机器

如何配置让*.abc.com都可以解析jsp
ServerAlias *.abc.com不管用