php判断搜索引擎来路然后进行跳转的代码

发布时间:2020-03-08编辑:脚本学堂
本文介绍下,php实现判断搜索引擎的来路,根据不同来路跳转到不同Url的一段代码,主要是练习下strpos函数的用法。有需要的朋友参考下吧。

php实现判断搜索引擎来路,然后跳转到不同Url。
代码:
 

复制代码 代码示例:
<?php
/**
* 判断搜索引擎来路 跳转网页
* edit: www.jb200.com
*/
$flag = false;
$tmp = $_SERVER['HTTP_USER_AGENT'];
if(strpos($tmp, 'Googlebot') !== false){
    $flag = true;
} else if(strpos($tmp, 'Baiduspider') >0){
    $flag = true;
} else if(strpos($tmp, 'Yahoo! Slurp') !== false){
    $flag = true;
} else if(strpos($tmp, 'msnbot') !== false){
    $flag = true;
} else if(strpos($tmp, 'Sosospider') !== false){
    $flag = true;
} else if(strpos($tmp, 'YodaoBot') !== false || strpos($tmp, 'OutfoxBot') !== false){
    $flag = true;
} else if(strpos($tmp, 'Sogou web spider') !== false || strpos($tmp, 'Sogou Orion spider') !== false){
    $flag = true;
} else if(strpos($tmp, 'fast-webcrawler') !== false){
    $flag = true;
} else if(strpos($tmp, 'Gaisbot') !== false){
    $flag = true;
} else if(strpos($tmp, 'ia_archiver') !== false){
    $flag = true;
} else if(strpos($tmp, 'altavista') !== false){
    $flag = true;
} else if(strpos($tmp, 'lycos_spider') !== false){
    $flag = true;
} else if(strpos($tmp, 'Inktomi slurp') !== false){
    $flag = true;
}
if($flag == false){
   //header("Location: http://www.xxx.com" . $_SERVER['REQUEST_URI']);
    require_once("cd.htm");
    // 自动转到http://www.xxx.com 对应的网页
    // $_SERVER['REQUEST_URI'] 为域名后面的路径
    // 或 header("Location: http://www.xxx.com/abc/a.php");
   exit();
}
else
{
require_once("index.htm");
}
?>