<?php
header("HTTP/1.0 404 Not Found");
header("Expires: Mon, 26 Jul 2001 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
?>
You definitely sent me in the right direction for finding the answer.
It looks like adding the following to my Page_Load function (this is
using c# with Mono, I've actually never used php) does the trick:
Response.StatusCode = 404;
Response.StatusDescription = "Not Found";
Though the response header seems a bit... stripped down. I didn't want
to mess with the header too much, since .NET has some background stuff
going on. But I can research that further.
In any event, thanks for the help!
Regards,
David P. Donahue
[EMAIL PROTECTED]
http://www.cyber0ne.com
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]