Hi, I have a website at www.x.com which is setup on my server On that server I have a domain alias at www.y.com. The idea is the site is hosted at one place but both places point to the place where the site is. When www.y.com is entered I want to re-direct it to a specific page on the website. What is the .htaccess to direct www.y.com to www.x.com/this_page.html Thanks in advance
Try something like this: RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)?y.com [NC] RewriteRule ^(.*)$ http://www.x.com/specific-web-page [L,R=301] Code (markup):