redirecting everything

hello

does anyone know how to redirect everything from a domain, to another (ie, as the user had typed the other domain)?

for example:
www.domain1.com -> www.domain2.com
test.domain1.com -> test.domain2.com
foo.domain1.com/dir/file -> foo.domain2.com/dir/file

i tried with:
Code:
RewriteEngine   on
RewriteRule     ^(.*)\.domain1\.com(.*)$  $1\.domain2\.com$2
and it didn't work

thanks in advance

 

 

 

 

Top