How to permanent 301 redirect your olddomain to a new domain?
Here few fast track to make your htaccess redirects more in easy way. How to permanent 301 redirect your olddomain to a new www domain? RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !newdomain.com$ [NC] RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301] How to permanent 301 redirect your old domain to new non-www domain? RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} …
Read more “How to permanent 301 redirect your olddomain to a new domain?”