if you changed your domain and you want to redirect visitors from old domain to new domain here is the best way to redirect them..
add this on your .htaccess file
RewriteEngine On
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]
“L” indicates that it’s the last instruction and “R” means redirect, and “301” means a permanent redirect.
Thanks..
add this on your .htaccess file
RewriteEngine On
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]
“L” indicates that it’s the last instruction and “R” means redirect, and “301” means a permanent redirect.
Thanks..