我如何设置只有我们的国家和谷歌机器人可以看到我的网站?

时间:2015-10-11 21:42:32

标签: php user-agent googlebot country countries

我在opencart系统上将此代码添加到index.php。

if(!strstr(strtolower($_SERVER['HTTP_USER_AGENT']), "googlebot"))
{
    if($_SERVER["HTTP_CF_IPCOUNTRY"] =! 'UK')
    { 
       echo "You can not see this page.";
       die();
    }
}

但我可以看到此页面包含来自其他国家/地区的代理网站。我想只使用My Country IP和googlebot查看此页面。

1 个答案:

答案 0 :(得分:0)

您可能想尝试:

if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'googlebot') !== false OR $_SERVER["HTTP_CF_IPCOUNTRY"] == 'UK') {
    echo "GoogleBot and UK users will see this";
}else{
    die("DENIED");
}