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]
RewriteCond %{HTTP_HOST} !^ftp.([^/])(.*)$
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^/(.*) http://www.%1/ [L,R]
