The only way to redirect to search engine rank is to redirect HTTP 301 (persistent).
Using PHP header('Location') will give 302 if you do not specify this code:
header('Location: http://....', true, 301);
It may be easier to use .htaccess, for example:
RewriteRule ^old.php /new.php [R=301]
source share