if (strstr($_SERVER['REQUEST_URI'],'index.php')){
header('HTTP/1.0 404 Not Found');
}
Why wont this work? I get a blank page.
if (strstr($_SERVER['REQUEST_URI'],'index.php')){
header('HTTP/1.0 404 Not Found');
}
Why wont this work? I get a blank page. | ||||
|
feedback
|
|
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. | |||||
feedback
|
|
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. | |||||||||||||||||||||
feedback
|
If you look at the last two echo lines, that's where you'll see the content. You can customize it however you want. | ||||
|
feedback
|
|
Load default server 404 page, if you have one, e.g. defined for apache:
| |||
|
feedback
|
|
If you want the server’s default error page to be displayed, you have to handle this in the server. | |||
|
feedback
|
|
A little bit shorter version. Suppress odd echo.
| |||
|
feedback
|
|
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: | ||||
|
feedback
|
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 | |||
feedback
|