When I go to a page that doesn't exist, and the default apache 404 page is displayed it has a response header of 404 Not Found
But when I use a custom error page I made, the response header is 404 OK
It doesn't matter if 1.0 or 1.1 is used the PHP header
header("HTTP/1.0 404 Not Found"); or header("HTTP/1.1 404 Not Found");
It still comes up as "404 OK" rather than "404 Not Found" (does the same thing with all custom pages)
Is it possible to get it to come up as "404 Not Found" in the response headers?