vote up 2 vote down star

Hello,
I have a header('HTTP/1.0 404 Not Found'); somewhere along the code but it doesn't redirect to the Apache's default 404 page for some reason.
I have a Rewrite Rule on the .htaccess file that redirects every request to index.php. Could that be the problem?

Thanks in advance,
Omer.

flag

2 Answers

vote up 10 vote down check

The header is not what tells Apache to display it's 404 page. Rather, when Apache displays its 404 page, it sends a 404 header along with it. The header is meant to have meaning to the browser, not the server. Apache displays a 404 when it can't find the proper file to display. Since you're in a PHP script, Apache has already found a file it can display, and thus won't show its own 404 page.

link|flag
vote up 5 vote down

Headers sent by PHP only matter really to the browser in this case. Apache isn't going to make its own page because you are already processing the page, and if you sent something, the two would conflict.

Yes, the .htaccess file is going to stop Apache from showing an error page because your rules makes Apache think it no longer has a 4040 error, because it has found a page to show.

Sending a header is really only a 'status message', and doesn't make the browser or server show a particular page. (Although most browsers will).

As Dav pointed out in the comments, you will want to send 404 errors to their own custom error page.

link|flag
So I should redirect to my own "page not found" page? – the_drow Aug 7 at 22:53
2  
Yes, that is generally what PHP apps do if they want to display such a message. – Dav Aug 7 at 22:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.