PDA

View Full Version : 301 redirect old domain to a new domain without compromising SEO?



Jackandrew
10-30-2015, 07:42 AM
Hello Guys,

I want to 301 redirect old domain to a new domain name without compromising SEO; our Keywords are in good ranking. Please tell me how I can do this without losing keyword rankings.


Thanks!!

dennis123
11-03-2015, 05:54 AM
Write the following in your htaccess file:

Code:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^oldname.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.oldname.com [NC]
RewriteRule ^(.*)$ http://newname.com/$1 [L,R=301,NC]

It should save most of your SEO juice from your old domain and transfer it to your new domain name.

RH-Calvin
11-04-2015, 02:22 AM
301 is the best redirection that you can have without much loss of keyword ranking for your website. It is the safest way to transfer your domain form one URL to another.

sarveshseair
11-06-2015, 06:13 AM
301 is the best redirection that you can have without much loss of keyword ranking for your website. It is the safest way to transfer your domain form one URL to another.

ramskl
11-07-2015, 02:41 AM
Write the following in your htaccess file:

Code:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^oldname.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.oldname.com [NC]
RewriteRule ^(.*)$ http://newname.com/$1 [L,R=301,NC]

It should save most of your SEO juice from your old domain and transfer it to your new domain name.

This is not a correct solution of this situation