How can I use mod_rewrite on Apache to direct any request for any page in a particular VirtualHost to another domain? i.e. something like:

<VirtualHost whatever.com:80>
Redirect * to http://www.some-other-domain.com/some-page.html
</VirtualHost>
link|improve this question

47% accept rate
feedback

1 Answer

up vote 0 down vote accepted
RewriteRule .* http://www.some-other-domain.com/some-page.html [R=301,L]

You may want to read this article for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.