Forum Moderators: phranque
We've covered many variations of this subject in previous threads [google.com]. Please take a look through those, review the documentation and tutorials cited in our Forum Charter, check the Apache Forum Library, and then post specific questions back here.
Thanks,
Jim
Options +FollowSymLinks
RewriteEngine on
# redirect to add "www" prefix for existing or new domain
RewriteCond %{HTTP_HOST} ^existing-domain\.com [NC,OR]
RewriteCond %{HTTP_HOST} ^new-domain\.com [NC]
RewriteRule (.*) [%{HTTP_HOST}...] [R=301,L]
# Internally rewrite new domain home page requests to a specific page
RewriteCond %{HTTP_HOST} ^www\.newdomain\.com
RewriteRule ^$ /specific-page.html [L]