if (strstr($_SERVER['REQUEST_URI'],'index.php')) {
header('HTTP/1.0 404 Not Found');
}
Why wont this work? I get a blank page.
Why wont this work? I get a blank page. |
||||
|
|
Your code is technically correct. If you looked at the headers of that blank page, you'd see a 404 header, and other computers/programs would be able to correctly identify the response as file not found. Of course, your users are still SOL. Normally, 404s are handled by the web server.
The problem is, once the web server starts processing the PHP page, it's already passed the point where it would handle a 404
In addition to providing a 404 header, PHP is now responsible for outputting the actual 404 page. |
|||||||||||||||||||||
|
|
That is correct behaviour, it's up to you to create the contents for the 404 page. Normal users however don't look at http-headers and use the page as a normal page. |
|||||
|
If you look at the last two echo lines, that's where you'll see the content. You can customize it however you want. |
||||
|
|
|
Load default server 404 page, if you have one, e.g. defined for apache:
|
|||
|
|
|
For the record, this is the all-case handler:
|
|||
|
|
|
A little bit shorter version. Suppress odd echo.
|
|||
|
|
never simplify the echo statements, and never forget the semi colon like above, also why run a substr on the page, we can easily just run php_self |
|||||
|
|
If you want the server’s default error page to be displayed, you have to handle this in the server. |
|||
|
|
|
I came up to this problem.. I think that redirecting to a non existing link on your server might do the trick ! Because the server would return his 404: |
|||||
|
|
If you want to show the server’s default 404 page, you can load it in a frame like this:
|
||||
|
|