Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 1st, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to redirect directory to another domain with Apache?
  2. <VirtualHost *:80>
  3.     ...
  4.     <Directory /path/to/vhost/>
  5.       RewriteEngine on
  6.       RewriteBase /example2/
  7.       RewriteRule ^(.*)$ http://www.example2.com/$1 [R=301]
  8.     </Directory>
  9. </VirtualHost>