Create a file called .htaccess and in it write:
code:
RewriteEngine On
Options +FollowSymlinks
RewriteRule ^(.*)$ http://abc.def.com/$1 [r=301,nc]
Assuming it's an apache server, that'll work.
Edit: Oh, and put it in the place you're redirecting from.
