
February 3rd, 2013, 08:03 AM
|
|
Registered User
|
|
Join Date: Feb 2013
Posts: 6
Time spent in forums: 1 h 35 m 45 sec
Reputation Power: 0
|
|
|
I think you totally missed the question
I think you totally missed the question. I did not ask how or when to use them, i asked about the proper syntax for issuing them via php - WHEN the script is processed through FastCGI.
To reiterate the initial question.... php .net manual states:
PHP Code:
header("HTTP/1.0 404 Not Found");
That instead of using the typical syntax, above, that for FastCGI you must use the following for a 404 response:
PHP Code:
header("Status: 404 Not Found");
So, the question is: Can anyone tell me if this is meant to apply ONLY to the FastCGI 404 Response ...or did they offer the "Status: 404 Not Found" only as an example and one must use that same format when issuing other FastCGI status response headers as well?!?
|