Y T Nuke  
Results 1 to 2 of 2
I'm trying to reduce the number of on-page links on an ecommerce site to give ...
  1. #1
    nashdog is offline Newbies
    Join Date
    Mar 2010
    Posts
    19
    Reputation
    10
    Thanks
    17
    Thanked 7 Times in 4 Posts

    Default PR sculpting via 'ethical' cloaking

    I'm trying to reduce the number of on-page links on an ecommerce site to give greater control with my link building efforts and also to fix some duplicate content problems.

    Amazon currently do this. If you check any category page within Amazon you will see the "shop all departments" content is not displayed in Google's cache.

    I need to hide the side navigation on all category pages from Googlebot - what is the best way to do this? Can anyone point me in the direction of a script or simple method I can use within my template files?

  2. #2
    ricardo_bresil is offline Newbies
    Join Date
    Jul 2009
    Posts
    7
    Reputation
    10
    Thanks
    18
    Thanked 3 Times in 3 Posts

    Default Re: PR sculpting via 'ethical' cloaking

    Hello,

    The best method is the reverse dns lookup, check this :

    Code:
    hxxp://www_google_com/support/webmasters/bin/answer.py?hl=en&answer=80553
    Remove xx and _

    And if you know php, a little script :

    PHP Code:

    <?php

    $dns
    =gethostbyaddr($_SERVER["REMOTE_ADDR"]);

    $googlebot=strpos($dns,"googlebot");

    if(
    $googlebot !== false) { 

    YOUR CLOAKED PAGE

    }else {

    YOUR STANDARD PAGE

    }
    ?>

Similar Threads

  1. REAL not PERCEIVED Risk for IP Based Cloaking?
    By consultant in forum Cloaking and Content Generators
    Replies: 1
    Last Post: 07-26-2011, 01:29 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  SEnukeX SEO Software
Proudly Powered by Hostwinds.com Web Hosting Click Here For Exclusive BHW Discounts!

Cheap Web Hosting


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76