301 Redirect using htaccess file

What?
There are a lot of articles & posts out there that cover the same topic, but as this took me the good part of an hour just to find out, I'm posting it here so I never have to look for it again.

A client changed their website domain address and wanted any person visiting the old domain to be redirected to the new domain.

Why?
I warned that a 301 site gets removed from the Google directory and true to form Google have removed it. Not sure why nobody believed me when I raised the alarm but hey-ho.

How?
I'm going to show you how to do this with a .htaccess file:
  1. Upload a text file to the root folder of the old domain's website
  2. Rename it as ".htaccess" (or modify the existing one)
  3. Add the code as per below.
  4. Save the change.
Different ways for different results, let's pretend I'm redirecting from myolddomain.com to mynewdomain.com:
copyraw
RewriteEngine On
RewriteRule ^(.*)$ http://www.mynewdomain.com/ [R=301]

# Redirects users from:
#       http://www.myolddomain.com -> 
#                       -> http://www.mynewdomain.com
#       http://www.myolddomain.com/category/folder/site.php -> 
#                       -> http://www.mynewdomain.com
#       http://www.myolddomain.com/anything -> 
#                       -> http://www.mynewdomain.com
  1.  RewriteEngine On 
  2.  RewriteRule ^(.*)$ http://www.mynewdomain.com/ [R=301] 
  3.   
  4.  # Redirects users from: 
  5.  #       http://www.myolddomain.com -> 
  6.  #                       -> http://www.mynewdomain.com 
  7.  #       http://www.myolddomain.com/category/folder/site.php -> 
  8.  #                       -> http://www.mynewdomain.com 
  9.  #       http://www.myolddomain.com/anything -> 
  10.  #                       -> http://www.mynewdomain.com 
Redirect domain but keep the rest of the URL:
copyraw
RewriteEngine on 
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]

# Redirects users from:
#       http://www.myolddomain.com -> 
#                       -> http://www.mynewdomain.com
#       http://www.myolddomain.com/category/folder/site.php -> 
#                       -> http://www.mynewdomain.com/category/folder/site.php
#       http://www.myolddomain.com/anything -> 
#                       -> http://www.mynewdomain.com/anything
  1.  RewriteEngine on 
  2.  RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L] 
  3.   
  4.  # Redirects users from: 
  5.  #       http://www.myolddomain.com -> 
  6.  #                       -> http://www.mynewdomain.com 
  7.  #       http://www.myolddomain.com/category/folder/site.php -> 
  8.  #                       -> http://www.mynewdomain.com/category/folder/site.php 
  9.  #       http://www.myolddomain.com/anything -> 
  10.  #                       -> http://www.mynewdomain.com/anything 
Category: Web-Development :: Article: 558

Credit where Credit is Due:


Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.

Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.

Thank you for visiting and, as always, we hope this website was of some use to you!

Kind Regards,

Joel Lipman
www.joellipman.com

Related Articles

Joes Revolver Map

Accreditation

Badge - Certified Zoho Creator Associate
Badge - Certified Zoho Creator Associate

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF
© 2024 Joel Lipman .com. All Rights Reserved.