Hi guys,
I want to 301 redirect my old domain as well as with the new domain.
I have added following rewrite code in htaccess file.
But above code doesn’t work for inner pages.
How to do this?
I want to 301 redirect my old domain as well as with the new domain.
I have added following rewrite code in htaccess file.
Code:
RewriteEngine On RewriteCond %{HTTP_HOST} ^OldDomain.com RewriteRule (.*) http://NewDomain.com/$1 [R=301,L]
How to do this?
Comment