搜索引擎蜘蛛抓取UA不跳转网站代码,正常访问跳转代码
这段PHP代码用于识别并欢迎搜索引擎蜘蛛,尤其是百度蜘蛛,将非目标用户重定向到特定页面以优化产品或商品咨询页面的访问,从而提升转化率。通过检查用户代理,代码能识别多种主流搜索引擎的爬虫,并根据是否为这些爬虫来决定是否允许访问。将代码插入首页或全局样式文件中,可确保有效实施。
怎么让百度搜索引擎蜘蛛抓取本站页面,让用户访问的页面是产品或者是商品咨询页面,让转换率更加好
<?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.youhua.net.cn/");
exit();
}
?>
以上代码包含了各大主流搜索引擎的蜘蛛,把代码里面的 https://www.youhua.net.cn 改成你要跳转的网站就可以了
以上PHP代码使用方式:
放在首页 index.php 文件里面 或者是全站的 顶部样式 文件里面都可以。