Hello!
// Apache/2.0.53 (Unix) PHP/4.3.10
I am using .htaccess to set handler for missing documents. They are not really
missing. It is a trick to have beautiful URLs when generating site content
from a database.
So, I have following .htaccess:
--- BEGIN ---
ErrorDocument 404 /~bsg/e/found.php
--- END ---
And the found.php is:
--- BEGIN ---
<?php
header ("HTTP/1.0 200 OK");
?>
<html>
<body>
<?php
echo "Hello! You are looking for '${_SERVER['REQUEST_URI']}'\n";
?>
</body>
</html>
--- END ---
The script even sets HTTP status to "200 OK" but it didn't help.
Is there a way to tell Apache from error document that everything is alright
and I don't want a record in error log?
Thanks.
---------------------------------------------------------------------
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]