Have a look into 301 permanent redirect.
If the new website has the same URL as the old one, you can code the header to redirect to the new domain, but exactly to the same page
PHP Code:
//old url = http://www.aaa.com/xxx_1.html
header("Location: http://www.bbb.com/xxx_1.html" , true, 301);
exit();
hope this help