View Single Post
  #1   IP: 117.95.54.30
Old 2009-06-24, 05:27 PM
topvip topvip is offline
超级版主
 
Join Date: 2006-01-04
Posts: 1206
topvip 正向着好的方向发展
Default View a Web Page as 'Googlebot'

http://www.smart-it-consulting.com/i...ofer/index.htm

Basic, Simple PHP Google Bot Cloaking Script


$useragent = $_SERVER['HTTP_USER_AGENT'];
$google = "Googlebot";
if (strstr($useragent, $google)) {
echo "google";
}
else
{
echo "man";
}
?>

the above code is for wordpress.

$useragent = $_SERVER['HTTP_USER_AGENT'];
$google = "Googlebot";
if (strstr($useragent, $google)) {
echo "google";
}
else
{
echo "man";
}
?>

Last edited by topvip : 2009-06-24 at 05:44 PM
Reply With Quote