PHP ile GOOGLEBOT Tespit Etmek

PHP ile web sitemize gelen googlebot'u tespit etmek için yazılmış bir kod...
< ?php
if ( strstr($_SERVER['HTTP_USER_AGENT'], "Googlebot" ) == true ){
$data= gethostbyaddr($_SERVER['REMOTE_ADDR']);
if ( substr($data, (strlen($data)-13)) == 'googlebot.com' )
{
// Evet, bu bot
}
else
{
// Hayır, bu bot değil
}
}?>

 

 

Alıntıdır,, Kaynak : http://www.zbahadir.com/2009/03/18/siteye-gelen-botlari-tespit-etmek.html

Sevebilirsin...

Bir cevap yazın

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

This site uses Akismet to reduce spam. Learn how your comment data is processed.