其他分享
首页 > 其他分享> > 搜索引擎蜘蛛抓取UA不跳转网站代码,正常访问跳转代码

搜索引擎蜘蛛抓取UA不跳转网站代码,正常访问跳转代码

作者:互联网

怎么让百度搜索引擎蜘蛛抓取本站页面,让用户访问的页面是产品或者是商品咨询页面,让转换率更加好
<?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;
} else if(strpos($tmp, 'googlebot-mobile') !== false){
$flag = true;
} else if(strpos($tmp, '360Spider ') !== false){
$flag = true;
} else if(strpos($tmp, 'haosouspider') !== false){
$flag = true;
} else if(strpos($tmp, 'Sogou News Spider') !== false){
$flag = true;
} else if(strpos($tmp, 'YoudaoBot') !== false){
$flag = true;
} else if(strpos($tmp, 'bingbot') !== false){
$flag = true;
} else if(strpos($tmp, 'YisouSpider') !== false){
$flag = true;
} else if(strpos($tmp, 'ia_archiver') !== false){
$flag = true;
} else if(strpos($tmp, 'EasouSpider') !== false){
$flag = true;
} else if(strpos($tmp, 'JikeSpider') !== false){
$flag = true;
} else if(strpos($tmp, 'Sogou blog') !== false){
$flag = true;
}
if($flag == false){
header("Location: https://www.banyunmao.com./");

exit();
}
?>

以上代码包含了各大主流搜索引擎的蜘蛛,把代码里面的 https://www.banyunmao.com 改成你要跳转的网站就可以了

以上PHP代码使用方式:

放在首页 index.php 文件里面 或者是全站的 顶部样式 文件里面都可以。

标签:tmp,false,true,代码,else,flag,strpos,跳转,UA
来源: https://blog.csdn.net/woaisjm/article/details/115660230