Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
if (strstr($_SERVER['REQUEST_URI'],'index.php')) {
    header('HTTP/1.0 404 Not Found');
}

Why wont this work? I get a blank page.

share|improve this question
Better option would be to send a 404 status and include your custom 404 page immediately. That's what i used to do. – Rocky Oct 25 '12 at 7:05

10 Answers

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.

  • User: Hey, do you have anything for me at this URI webserver?
  • Webserver: No, I don't, 404! Here's a page to display for 404s.

The problem is, once the web server starts processing the PHP page, it's already passed the point where it would handle a 404

  • User: Hey, do you have anything for me at this URI webserver?
  • Webserver: Yes, I do, it's a PHP page. It'll tell you what the response code is
  • PHP: Hey, OMG 404!!!!!!!
  • Webserver: Well crap, the 404 page people have already gone home, so I'll just send along whatever PHP gave me

In addition to providing a 404 header, PHP is now responsible for outputting the actual 404 page.

share|improve this answer
7  
Any reason to care? – Pim Jager Feb 22 '09 at 15:30
39  
That’s actually what PHP normally sounds like to me. So: business as usual. – Konrad Rudolph Dec 27 '11 at 10:47
21  
14 year old girl or not, the little cheesy dialog really made this make sense to me. – rbwhitaker Apr 8 '12 at 19:20
3  
PHP was 14 back then – Adam Lynch Jan 29 at 18:27
2  
That's how documentation should be written! Especially Apache documentation, which I truly hate :) – Harry Mar 5 at 10:05
show 2 more comments

That is correct behaviour, it's up to you to create the contents for the 404 page.
The 404 header is used by spiders and download-managers to determine if the file exists.
(A page with a 404 header won't be indexed by google or other search-engines)

Normal users however don't look at http-headers and use the page as a normal page.

share|improve this answer
7  
FWIW, incase of 404, IE returns its standard 'not found' page if the content is short (it assumes the server is just saying 'not found' and decides to display a nicer page to user). – Serge - appTranslator Dec 27 '11 at 14:06
if (strstr($_SERVER['REQUEST_URI'],'index.php')){
    header('HTTP/1.0 404 Not Found');
    echo "<h1>404 Not Found</h1>";
    echo "The page that you have requested could not be found.";
    exit();
}

If you look at the last two echo lines, that's where you'll see the content. You can customize it however you want.

share|improve this answer

Load default server 404 page, if you have one, e.g. defined for apache:

if(strstr($_SERVER['REQUEST_URI'],'index.php')){
  header('HTTP/1.0 404 Not Found');
  readfile('404missing.html');
  exit();
}
share|improve this answer

For the record, this is the all-case handler:

<?php
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
header("Status: 404 Not Found");

$_SERVER['REDIRECT_STATUS'] = 404;
?> <!-- 404 contents below this line -->
share|improve this answer

A little bit shorter version. Suppress odd echo.

if (strstr($_SERVER['REQUEST_URI'],'index.php')){
  header('HTTP/1.0 404 Not Found');
  exit("<h1>404 Not Found</h1>\nThe page that you have requested could not be found.");
}
share|improve this answer
if($_SERVER['PHP_SELF'] == '/index.php'){ 
   header('HTTP/1.0 404 Not Found');
   echo "<h1>404 Not Found</h1>";
   echo "The page that you have requested could not be found.";
   die;
}

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

share|improve this answer
2  
because REQUEST_URI is not the same as PHP_SELF. Especially if you have URL rewriting. – Timo Huovinen Nov 30 '11 at 11:19

If you want the server’s default error page to be displayed, you have to handle this in the server.

share|improve this answer

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:
header('Redirect abbb.404.nonexist'); < that doesnt exist for sure

share|improve this answer
3  
That would also return a 302 if you do that. Better don't redirect your 404's. instead use the 404 status code and display the not found message. – Rocky Oct 25 '12 at 7:02

If you want to show the server’s default 404 page, you can load it in a frame like this:

echo '<iframe src="/something-bogus" width="100%" height="100%" frameBorder="0" border="0" scrolling="no"></iframe>';
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.