Google Bot/spider

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Google Bot/spider

    Just some CODE I have on my PC and wanted to share with you.

    <div class='codetop'>CODE</div><div class='codemain' style='height:200px;white-space:pre;overflow:auto'><?php
    if(strpos($_SERVER[&#39;HTTP_USER_AGENT&#39;], &#39;Googlebot&#39;) !== false)
    {
    $email = &#39;you@domain.com&#39;;
    mail($email,&#39;Googlebot Alert&#39;, &#39;Googlebot has crawled your page: &#39;.$_SERVER[&#39;REQUEST_URI&#39;]);
    }
    ?></div>

    #2
    Just some CODE I have on my PC and wanted to share with you.

    <div class='codetop'>CODE
    <div class='codemain' style='height:200px;white-space:pre;overflow:auto'><?php
    if(strpos($_SERVER[&#39;HTTP_USER_AGENT&#39;], &#39;Googlebot&#39;) !== false)
    {
    $email = &#39;you@domain.com&#39;;
    mail($email,&#39;Googlebot Alert&#39;, &#39;Googlebot has crawled your page: &#39;.$_SERVER[&#39;REQUEST_URI&#39;]);
    }
    ?></div>[/b][/quote]
    copy n paste from google

    Comment


      #3
      google bots gay and don&#39;t really care about it
      plus many people/bots use/spoof google bots user agent so don&#39;t really know if it really is google bot unless you resolve the IP > hostname

      Comment

      Working...
      X