On 8/8/07, Samuel Vogel <samy-delux@xxxxxx> wrote: > This is how my vHost looks like now: > > <VirtualHost *> > ServerName samy.newkilu.de > ServerAlias *.samy.newkilu.de > > DocumentRoot /data/apache/samy/www > > RewriteEngine On > RewriteCond %{HTTP_HOST} !^www\. > RewriteCond %{HTTP_HOST} ^([^.]+)\.samy\.newkilu\.de > RewriteRule ^(.*)$ %1/$1 [L] > </VirtualHost> > > All it gives me is "Bad Request". I don't understand this, since I got > it to work in .htaccess with using " %{ENV:REDIRECT_STATUS} ="" ". What > am I doing wrong in my vHost config? You're rewriting to a path without a leading slash. Try RewriteRule ^(.*)$ /%1/$1 [L] Or try RewriteRule ^(.*)$ /data/apache/samy/www/%1/$1 [L] --------------------------------------------------------------------- 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