Skip to content

Instantly share code, notes, and snippets.

@robmint
Created February 26, 2012 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robmint/1919516 to your computer and use it in GitHub Desktop.
Save robmint/1919516 to your computer and use it in GitHub Desktop.
Many virtual hosts under one domain
NameVirtualHost *
<VirtualHost *>
ServerName fruit.com
DocumentRoot /www/html/htdocs/fruitsite/docroot
</VirtualHost>
<VirtualHost *>
ServerName www.apple.com
ServerAlias www.banana.com www.cherry.com
RewriteEngine On
RewriteRule ^(.*)$ http://fruit.com$1 [R=301,L]
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment