CryptMedia
Regular Member
- Sep 24, 2019
- 207
- 145
What are your suggestions when moving a website to another domain to maintain the seo rankings?
What about using redirects and all these guys using expired domains to rank new sites?i dont think u can maintain the rank of the domain, maybe poke google about it?
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [NC]
RewriteRule ^(.*)$ http://NEWDOMAIN.com [R=301,L]
as said above it best way .Yes, that is doable and you have to set that on .htaccess if using Apache or in the Nginx configuration file.
.htaccess is more common since cPanel, so here it is:
Code:Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [NC] RewriteRule ^(.*)$ http://NEWDOMAIN.com [R=301,L]