What would be the simplest way to block most search engine bots from accessing a specific page?
It doesn't have to work 100% of the time, just most of the time.
So far, I've figured out how to block google:
if (eregi("google",$HTTP_USER_AGENT)) {
exit();
}
Thanks.