现在由于开发需要,将jboss4.2.2.GA和APACHE2.2连接,想用proxy模块,但是我这边的目录是这样的:jboss那边只是存放jsp和java类文件,在apache那边存放所有的image,css,js,php,htm文件,现在想用proxy连接,已经能连接上了,但是无法找到apache这边的image,css,js,php,htm这边的文件,请教高手如何设置!现将部分apahce的配置信息贴出来,请高手帮忙!
httpd.conf:
<VirtualHost *>
ServerName www.test.com:80
DocumentRoot "/var/www/sshsearch"
<Directory "/var/www/sshsearch">   #apache的存放图片的目录
         Options All
    AllowOverride All
    Order deny,allow
    Allow from all
    DirectoryIndex /product/default/default_logo.gif
    ErrorDocument 404 /404.jsp
    ErrorDocument 400 /404.jsp
    ErrorDocument 503 /404.jsp
</Directory>
ServerAlias localhost
ProxyIOBufferSize 8192   
       ProxyRequests On   
       ProxyVia Full   
      ProxyPass / ajp://127.0.0.1:8009/
     ProxyPassReverse / ajp://127.0.0.1:8009/
ProxyPass /images/ !
ProxyPass /css/ !
ProxyPass /js/ !
ProxyPass /php/ !
</VirtualHost>