To 301 redirect all directories and pages of your old domain to a new domain, create a .htaccess file with the code below;
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.url-to-redirect.com/$1 [R=301,L]
RewriteEngine on
RewriteRule (.*) http://www.url-to-redirect.com/$1 [R=301,L]
Place the .htaccess file in the root directory of your old website.
