[EMAIL PROTECTED] wrote:
> I'm using the following code:
>
> header("Status: 301 Moved Permanently");
> header("Location: mynewurl");
> exit();Never ever use a Status header. Either set the third param to header() to the intended response status code or use a "HTTP/1.1 301" header string. See http://php.net/header -- Michael -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php
