Hi All, I want to transfer my website from old to new domain. I know the process but worried about 301 redirection. Kindly tell me the process. Do I have to do redirect 301 old url new domain url (1 by one) Or only redirect domain, so it can redirect all url itself? Kindly suggest me.
I am using this code. <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^domain1.in$ [NC,OR] RewriteCond %{HTTP_HOST} ^domain1.$ [NC] RewriteRule (.*)$ http:/ /domain2./$1 [R=301,NC] </IfModule> on my website and for home page it works perfectly. But my inner pages are showing as not found. can you guys suggest me some?