使用php进行指定搜索引擎蜘蛛的301重定向代码
PHP自用301爬虫抓取代码,平时可能有的站做不起来,我们需要把蜘蛛强引到新站。这里刚好用到就写了一个php301蜘蛛代码,也分享给各位有缘的网友使用,下面代码以强引搜狗蜘蛛为例:以上只是部份演示图片,详细可以付费购买。 $key= $_SERVER["HTTP_USER_AGENT"];
$Sogouspider =preg_match('/Sogou web spider/', $key, $Sogouspider);
if($Sogouspider !='')
{
$host=$_SERVER['HTTP_HOST'];
$host=explode(".",$host);
$count_host=count($host);
if($count_host==3)
{
$host['0'].'.'.$host['2'];
$ym="http://".$host['0'].".网站根域名";
Header("HTTP/1.1 301 Moved Permanently");
Header("Location: $ym");
}
if($count_host==2)
{
$ym="http://网站根域名";
Header("HTTP/1.1 301 Moved Permanently");
Header("Location: $ym");
}
}
通过上面的代码,我们可以实现指定搜索引擎蜘蛛强引到新的网站上,而不影响其他搜索引擎的蜘蛛及收录。
页:
[1]