谷歌机器人爬网通知程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了谷歌机器人爬网通知程序相关的知识,希望对你有一定的参考价值。

Include this in any page you want to track for Google bot crawls.
Adapt it to your needs (eg: mysql log instead of e-mail announcement, etc).
  1. <?php
  2.  
  3. $email = "[email protected]";
  4.  
  5. if(eregi("googlebot",$HTTP_USER_AGENT))
  6. {
  7. if ($QUERY_STRING != "")
  8. {
  9. $url = "http://".$SERVER_NAME.$PHP_SELF.'?'.$QUERY_STRING;
  10. } else {
  11. $url = "http://".$SERVER_NAME.$PHP_SELF;
  12. }
  13. $date = date("F j, Y, g:i a");
  14. mail($email, "[Googlebot] $url", "$date - Google crawled $url");
  15. }
  16. ?>

以上是关于谷歌机器人爬网通知程序的主要内容,如果未能解决你的问题,请参考以下文章

使用片段的谷歌地图

谷歌地图不显示在片段中

如何更改谷歌地图标记上方的标题和片段设计

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

谷歌推送通知未到达应用程序

在标签片段android中添加谷歌地点选择器