PHP Google bot抓取通知程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Google bot抓取通知程序相关的知识,希望对你有一定的参考价值。
<?php
$email = "test@test.com";
if(eregi("googlebot",$HTTP_USER_AGENT))
{
if ($QUERY_STRING != "")
{
$url = "http://".$SERVER_NAME.$PHP_SELF.'?'.$QUERY_STRING;
} else {
$url = "http://".$SERVER_NAME.$PHP_SELF;
}
$date = date("F j, Y, g:i a");
mail($email, "[Googlebot] $url", "$date - Google crawled $url");
}
?>
以上是关于PHP Google bot抓取通知程序的主要内容,如果未能解决你的问题,请参考以下文章
为google bot crawler提供不同的页面[关闭]
php5-fpm + nginx + google bot = 对等方重置连接
Google Hangout Room中的Bot可以访问活动用户吗
.htaccess 重定向对 Google bot 有啥影响?
Android phonegap 使用 php 使用 Google Cloud Messaging 发送推送通知
如何通过 Bot Framework 向 Teams 中的用户发送通知?