dijkstra,
try this:

  | # mod_jk2 configuration
  | LoadModule jk2_module modules/mod_jk2.so
  | 
  | # for jboss
  | RewriteEngine on
  | 
  | RewriteRule "^/WEB-INF/?(.*)" "$0" [L,F,NC]
  | 
  | #***** Pull files off Apache **********
  | RewriteRule "^/(.*)\.gif$" "$0" [L]
  | RewriteRule "^/(.*)\.html$" "$0" [L]
  | #********************************
  | 
  | #***** Pull files off Tomcat **********
  | RewriteRule (.*)\.(xml|xsl|jsp)$ http://localhost:8080/myWAR/$1.$2 [P,L]
  | #********************************
  | 
  | #******** Redirect All that don't match above to tomcat ******
  | RewriteRule "^/(.*)" "http://localhost:8080/$1"; [P]
  | #**********************************
  | 
  | ProxyPassReverse / http://localhost:8080/
  | 

regards


Andrew

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3856118#3856118

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3856118


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to