Site Redirection .htaccess Help

Discussion in 'Apache' started by projectWORD, Jul 6, 2011.

  1. #1
    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
     
    projectWORD, Jul 6, 2011 IP
  2. MartinPrestovic

    MartinPrestovic Peon

    Messages:
    213
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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):
     
    MartinPrestovic, Jul 6, 2011 IP