301 redirect

Discussion in 'Apache' started by William, Apr 2, 2006.

  1. #1
    How do you do a 301 redirect of a singel page on a apache server?
     
    William, Apr 2, 2006 IP
  2. SpeedyDomainRegistration

    SpeedyDomainRegistration Peon

    Messages:
    170
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Use the following in .htaccess file.
    
    RewriteEngine ON
    Redirect 301 /old-page.html http://www.newdomain/new-page.html
    
    Code (markup):
     
  3. William

    William Well-Known Member

    Messages:
    1,310
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    140
    #3
    Thanks. I appriciate it.
     
    William, Apr 3, 2006 IP
  4. SpeedyDomainRegistration

    SpeedyDomainRegistration Peon

    Messages:
    170
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Not a problem.

    Here to help.

    Might want to check out this Mod_rewrite faq

    Lots of good info on Mod_rewrite