If you are on an Apache Server you can redirect one domain to another with this code in your .htaccess file:

Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?domain1\.com [NC] 
RewriteRule ^(.*)$ http://domain2.com/$1 [R=301,L]