Redirect Entire Site
There are many times where it would be helpful to redirect all traffic coming from one site to another. For example, if you setup a new website with a domain name, you can automatically redirect all traffic coming to your old domain name to your new one.
RewriteEngine On
RewriteRule ^(.*)$ http://www.redirect-to.com/$1 [R=301,L]
RewriteRule ^(.*)$ http://www.redirect-to.com/$1 [R=301,L]
Just replace the above example with your own domain name.
If the redirect is to be permanent, you can use this:
Redirect permanent / http://www.domain.com/




