设置网站,百度蜘蛛,google bot能访问,普通用户不能访问
2011年07月11日
by Yin song
0 comments
总有些原因,需要关站一段时间,那么怎么设置网站。百度google能访问,用户不能访问呢?
我设置了index.php为默认文档
<?php$useragent = strtolower($_SERVER['HTTP_USER_AGENT']);
if (strpos($useragent, ‘baiduspider’) || strpos($useragent, ‘googlebot’))
{ header(‘HTTP/1.1 301 Moved Permanently’); header(‘Location:index.html’);}
else{ exit;}
?>
这样 百度,google来的时候返回index.html
用户访问的时候,退出