Forum Moderators: coopster
If the redirect is very slow, be sure to check the redirection transaction using a server headers checker, and one that shows "all the steps." Be sure that you're not getting into some kind of rewrite/redirect loop -- a fairly common cause of "very slow" redirects.
Jim
Do you have a general PHP performance problem on this site? There is (usually) only a small amount of time required for the server to generate and send a redirect header, for the client to process that response, and then request the new URL. After that, and ignoring the client's ISP and time-on-the-wire delays, the remaining time delay depends on the performance of the other (the redirected-to) site.
Jim
try .htaccess, like
redirect permanent http://www.example.com/new_page.php
or
redirect temporary http://www.example.com/new_page.php
if you want it to be a temporary redirect