You can redirect the old domain name to your new one by inserting this code to the .htacess file in your public_html folder:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
Replace www.newdomain.com in the above code with your old domain name.