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|\.do|j_security_check)$ RewriteRule ^/(.*) ajp://localhost/$1 [P] <Directory /home/domain.be/public_html/WEB-INF/> AllowOverride None Deny from all </Directory> </VirtualHost> With this configuration I cannot login to a admin section protected with j_security_check. When I log in, I'm redirected to http://www.theserverside.com/discussions/thread.tss?thread_id=32033 I was wondering if this is actually the good way to set up things? If I point my browser to http://www.domain.be/j_security_check, then I receive a login page. Does anyone know what problem occurs here? 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