> Never ever use a Status header.
As I mentioned in my email, I have used the HTTP string:
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://...");
exit();
produces a 302.
header("Location: http://...");
header("HTTP/1.1 301 Moved Permanently");
exit();
produces a 302.
header("Location: http://...",false,301);
produces a 302 and, for good luck,
header("Location: http://...",true,301);
produces a 302.
Everything's producing a 302. So you can see the dilemma.
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php