Mobile app version of vmapp.org
Login or Join
Sent6035632

: Redirect 301 from old domain to a new one affect google rank I did the redirect from my old domain store to a new domain using 301 rules on .htaccess as simplified below: Options +FollowSymLinks

@Sent6035632

Posted in: #Htaccess #Magento #Php #Redirects #Regex

I did the redirect from my old domain store to a new domain using 301 rules on .htaccess as simplified below:

Options +FollowSymLinks
RewriteEngine on

RewriteCond %{THE_REQUEST} /store/catalogsearch/result/index/ [NC]
RewriteRule ^ www.newdomain.com/? [L,R=301]

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /([^/]+/)*(default|index).(html|php|htm) HTTP/ [NC]
RewriteRule ^(([^/]+/)*)(default|main|index).(html|php|htm)$ www.newdomain.com/ [R=301,NC]

RewriteRule ^store/?$ www.newdomain.com [L,NC,R=301]
RewriteRule ^store/index.php$ www.newdomain.com [L,NC,R=301]
RewriteRule ^store/directory/?$ www.newdomain.com/new-directory-1/ [L,NC,R=301]
RewriteRule ^store/product.html$ www.store.com/product [L,NC,R=301]

RewriteCond %{HTTP_HOST} ^(www.)?olddomain.com$ [NC]
RewriteRule ^(.*)$ www.newdomain.com/ [R=301,NE,L]


But after months, my Page Authority still is 1 against 17 on old domain. So, I have some questions:


Do I need to have a rule to redirect robots and sitemap files from my old domain to the new domain?
Do I need to keep my robots and sitemap files in old domain?
How long does it take to recover my old Page Authority if possible?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Sent6035632

1 Comments

Sorted by latest first Latest Oldest Best

 

@Barnes591

I would say you should check your ranking in Google, Webmaster tools instead of worrying about PA.

As long as your ranking is retained, PA shouldn't be an issue as eventually, MOZ algorithm will re-calculate.

Old Domain: Just ensure you got permanent 301 redirect for pages.

404: Worth checking if you got any 404 and if there is any then redirect to respective URL in the new domain.

New Domain: Have sitemap as per new domain. Configure webmaster tools and check if there is any 404.

The timing for PA: I would say focus on ranking on Google than thinking much about PA, i would say leave it for few weeks and check again.

Conclusion: Focus on 301 and 404 and ensure you got XML sitemap up on your new domain. Don't worry much about PA it will update eventually.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme