<?php
if (eregi("GoogleBot",$_SERVER['HTTP_USER_AGENT']))
{
?>
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>To the eyes of Google bot only</title>
</head><body>
This page contains "secret content", visible only to Googleot and through google cache.<br/>
suppose you publish something and want to keep it online even after you are forced to remove it.<br/>
you can use google cache to keep a copy, and prevent mare mortals for accessing it directly (unless they are crafy and know how to change the user agent)</br>
this way, you can claim to have removed the content, but point people to google cache.<br/>
sneaky, ah?<br/>

you can view the source of this php file <a href="index.phps">here</a>
</body></html>
<?php
}
else
{
    
header("HTTP/1.0 404");
?>
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL / was not found on this server.</p>
<hr>
<address>Apache/2.2.9 (Debian) DAV/2 SVN/1.5.1 PHP/5.2.6-3 with Suhosin-Patch mod_ssl/2.2.9 OpenSSL/0.9.8g mod_wsgi/2.3 Python/2.5.2 Server at firefang.net Port 80</address>
</body></html>
<?php
}
?>