Hi friends! I have an aplication hosted on a JBOSS server that must receive an id as argument. This id will make the application load the correct template for the typed URL. Eg.: For URL 'client1.app.mydomain.com', the application will load the template for 'client1'. I trying to do something like this: <VirtualHost *:80> ServerName www.app.mydomain.com ServerAlias *.app.mydomain.com RewriteCond %{http_host} ^(.*).app.mydomain.com RewriteRule ^(.*) http://localhost:8080/app?id=%1 [P,L] </VirtualHost> The problem is that I get a redirect to 'http://localhost:5050/app?id=client1' and I want to keep the original URL (client1.app.mydomain.com). Do you have another idea in how to do this functional ? Thanks! Fabricio. --------------------------------------------------------------------- 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