if (strstr($_SERVER['REQUEST_URI'],'index.php')){
header('HTTP/1.0 404 Not Found');
}

Why wont this work? I get a blank page.

link|improve this question
feedback

8 Answers

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.

link|improve this answer
2  
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
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.

  • 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.

link|improve this answer
39  
any reason php sounds like a 14 year old girl? – Paolo Bergantino Jan 13 '09 at 3:12
1  
Any reason to care? – Pim Jager Feb 22 '09 at 15:30
9  
The original poster didn't seem like a sophisticated web user. By dumbing the language down to 14 year old girl vernacular I was hoping to get across a technical concept in a non-technical way. – Alan Storm Mar 7 '11 at 0:40
3  
That’s actually what PHP normally sounds like to me. So: business as usual. – Konrad Rudolph Dec 27 '11 at 10:47
1  
14 year old girl or not, the little cheesy dialog really made this make sense to me. – rbwhitaker Apr 8 at 19:20
feedback
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.

link|improve this answer
feedback

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();
}
link|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback
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

link|improve this answer
because REQUEST_URI is not the same as PHP_SELF. Especially if you have URL rewriting. – YuriKolovsky Nov 30 '11 at 11:19
feedback

Your Answer

 
or
required, but never shown