googlebot.txt dosyası oluşturun. googlebot.php dosyası oluşturun ve şu kodu ekleyin:
if(strstr(strtolower($_SERVER['HTTP_USER_AGENT']), "googlebot"))
{
date_default_timezone_set('Europe/Istanbul');
$protocol = ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
$url = $protocol . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$gbottxt = fopen("googlebot.txt", "a") or die("googlebot.txt dosyasına erişilemedi!");
$txt = "Google Bot ziyarete geldi. (Sayfa: ".$url.") (Tarih: ".date("H:i - d/m/Y").") \n";
fwrite($gbottxt, $txt);
fclose($gbottxt);
echo "Google Bot!";
}
?>
Google Botu takip etmek istediğiniz sayfalara şu kodu ekleyin:
include("googlebot.php");
Artık Google Botunun girişleri googlebot.txt dosyasına yazdırılacak.