根据user-agent判断蜘蛛跳转 (php版与js版本)

LsevenTT站群哥 SEO相关 PHP相关根据user-agent判断蜘蛛跳转 (php版与js版本)已关闭评论4,440阅读模式

黑帽seo手段中有一个大家都在用的技巧,在服务端判断 客户端浏览器的user-agent然后做进一步操作,

网上一直都有人在用 这个代码 先是一个js代码 判断网站访客来路 如果是搜索引擎来的 就跳转 如果是直接访问则不变化 这段代码是从网上找来的 已经很久了 不用感谢我

 

<script language="javascript">
var pattern = /baidu/gi;
var pattern1= /google/gi;
var keyValue=escape(document.referrer);
if (pattern.exec(keyValue))
setTimeout(
"windows.location='https://www.lseventt.net/%E7%AB%99%E7%BE%A4%E7%A8%8B%E5%BA%8F'",10*1000);
else if(pattern1.exec(keyValue))
setTimeout(
"window.location='https://www.lseventt.net'",10*1000);
</script>

判断搜索引擎进行不同的跳转

百度蜘蛛就会跳转到 https://www.lseventt.net/站群程序

判断是谷歌蜘蛛就会跳到 https://www.lseventt.net/

 

如果是搜索引擎的user-agent则301跳转

具体还有很多思路,跳转了,乔页等 今天仅把代码放出来 php的代码

声明 代码都是百度下来的 先写个简单的
根据php的 $_SERVER[‘HTTP_USER_AGENT']来进行判断

 

<?php
$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: https://www.lseventt.net" . $_SERVER['REQUEST_URI']);
    // 自动转到https://www.lseventt.net 对应的网页
    // $_SERVER['REQUEST_URI'] 为域名后面的路径
    // 或 换成 header("Location: https://www.lseventt.net/index.php?s=php");
   exit();
}
?>

 

 

 

 

 

文章末尾固定信息

weinxin
我的微信
我的微信
微信扫一扫
 
LsevenTT站群哥
  • 本文由 LsevenTT站群哥 发表于 2017年11月15日 22:14:52
  • 转载请务必保留本文链接:https://lseventt.net/archives/1414.html