Hi, I want to do a permanent 301 redirect from one of my site to other site’s folder. Ex. myfirstdomain.com to mysecondomain.com/myfirstdomain Both these domains are performing well in Google SERP. I want to transfer all my SERP benefits of myfirstdomain.com to mysecondomain.com/myfirstdomain Is it possible? If yes please guide me how to do it.
Always use 301 redirection if you want permanent redirection because redirection with 301 passes between 90-99% of link juice (ranking power) to the redirected page.
Setting a 301 redirection is easy. Just put the following codes in your HTACCESS file, and it must be in the root folder of myfirstdomain.com: Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://mysecondomain.com/myfirstdomain/$1 [R=301,L] Code (markup):
it should rather be: redirect 301 / http://www.mysecondomain.com/myfirstdomain Code (markup): in the .htaccess for hxxp://www.myfirstdomain.com/