I had to set up a a name based virtual host on a server. The JSP-files of this server should be served by Tomcat, any other file should be served by Apache. Therefore, I wrote this configuration: <VirtualHost *:80> ServerName domain.be ServerAlias www.domain.be ServerAdmin hosting@xxxxxxxxx DocumentRoot /home/domain.be/public_html RewriteEngine on RewriteCond %{REQUEST_URI} /(.*)\.jsp$ RewriteRule ^/(.*) ajp://localhost/$1 [P] <Directory /home/domain.be/public_html/WEB-INF/> AllowOverride None Deny from all </Directory> </VirtualHost> Actually, this works fine, but I was wondering if this is really the good way, as documentation about this matter seems to be rather thin. Anyone suggestions? Kind regards, Pieter Bolle --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx