Htaccess redirect is best for redirect ole domain to new domain. You just make a .htaccess file with following code which is ensure that all your pages of old domain get redirected to new domain. This file is necessary to submit in root folder of your old website.
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
Kindly replace
IANA — Example domains in the above code with your new domain name. This code is useful for Linux server.