mod_rewrite

I want ftp.domain.com going to www.domain.com, there is no apache vhost entry for ftp.domain.com, so it's going to the first virtual host.... :/

I was thinking about this solution in mod_rewrite:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^ftp.([^/])(.*)$
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^/(.*) http://www.%1/ [L,R]
but it's not working mod_rewrite can anybody help me a little bit, i'm not an expert with mod_rewrite :/

 

 

 

 

Top