You can put this in your .htaccess file
=====
RewriteEngine On
RewriteCond %{HTTP_HOST} ^toberedirected.com
RewriteRule (.*) http://wheretoberedirected.com/$1 [R=301,L]
=====
Good solution if you want a domain to be redirected to a sub-domain or vice versa.
It is a 301 permanent redirect often used to combine
PR.