<?php
function google(){
if (preg_match ('/[Gg][Oo][Oo][Gg][Ll][Ee]/', $_SERVER["HTTP_USER_AGENT"] )) {
return true;
}
}
if (google()) {
require_once('1.txt'); // Sadece Google Bot 1.txt Dosyasını İçeriğini Görecektir.
}
if (!google()) {
require_once('2.txt'); // Google Bot Harici Herkes 2.txt Dosyasının İçeriğini Görecektir
}
?>belki işine yarar...