How to redirect old domain to new domain ? Print

  • redirect old domain to new domain, url rewrite, .htacess edit, .htacess edit, old url to new url, auto url switch from old to new
  • 8

Step 1:  Create/Edit a file .htaccess in the documbent root (public_html / www folder)
of your old domain hosting account and put the code below inside .htaccess file :



#-------------------------------------------------------
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) https://your-new-domain.com/$1 [R=301,L]
#-------------------------------------------------------

Step 2: Replace your new domain name where you see : https://your-new-domain.com in above code.

Step 3: Save & upload file into your old hosting server and you done !

Now your old domain name reffer visitors to your new domain name.


Was this answer helpful?

« Back