301 redirect

graySEO

Regular Member
Joined
Apr 23, 2018
Messages
283
Reaction score
66
Hi guys, i need information on how to redirect my old site to my new domain without losing all the page rankings and visitors. i do really need a guide on this guys. i appreciate
 
Make a 301 redirect in .htaccess.
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^oldsite\.com
RewriteRule ^(.*)$ http://newsite.com/$1 [R=301,L]
 
Make a 301 redirect in .htaccess.
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^oldsite\.com
RewriteRule ^(.*)$ http://newsite.com/$1 [R=301,L]

thanks for the reply.
wnat to know though if i can copy and paste this in the .htcacess folder and simply just change the site name in the old and new or i have to write them manually?
 
thanks for the reply.
wnat to know though if i can copy and paste this in the .htcacess folder and simply just change the site name in the old and new or i have to write them manually?
.htaccess is a file not a folder

And yes i read the code you only need to change site names
 
Back
Top