On the "header" doc page
(http://php.net/manual/en/function.header.php), I saw this:

For FastCGI you must use the following for a 404 response:

<?php
header("Status: 404 Not Found");
?>

Why is this the case? I tested Nginx+FastCGI+5.3 with just:

<?php
header("HTTP/1.0 404 Not Found");
?>

And it seemed to work fine. Could anyone explain this? I think it
might be helpful to clarify that page a bit.

Cheers,
Breck

Reply via email to