Point of hiding referrer?

by KMatt
9 replies
If you are doing everything completely white hat what is that point of hiding where your traffic comes from? Kinda confused on why everyone does it.
#hiding #point #referrer
  • Profile picture of the author Affiliit
    People don't want networks/advertisers to steal there landing pages
    Signature
    Learn Affiliate Marketing - Affiliit - Learn How to Make money with Facebook, POF, CPV/PPV, PPC, SEO, etc!
    Try Out Affiliit Now And See How Hundreds are Making Money Online!
    {{ DiscussionBoard.errors[2079540].message }}
  • Profile picture of the author williamrs
    Many affiliate managers are affiliates, too. So many people (specially big affiliates) blank the referrer in order to protect their traffic sources.
    Signature
    Steal My Profit Strategy



    >> Download Now <<
    {{ DiscussionBoard.errors[2079908].message }}
  • Profile picture of the author Kenster
    hiding your traffic = protecting your assets in many situations as described above. Its tough to hide what you are doing to the world because your ads/landing pages, etc are public, but you do try and hide as much as possible on the backend such as revenue you are making, etc which the networks can see.
    {{ DiscussionBoard.errors[2080007].message }}
  • Profile picture of the author uche2rue
    To protect your landing page and source of traffic
    {{ DiscussionBoard.errors[2080019].message }}
  • Profile picture of the author RyanEagle
    We always suggest to our affiliates to hide that information - we don't need to see people's landing pages.
    {{ DiscussionBoard.errors[2080032].message }}
  • Profile picture of the author KMatt
    Ok so I put a redirect in to hide my landing page and am using
    <meta http-equiv="refresh" content="0;url='affiliate link'">
    on my redirect page but when it goes to the affilate site the link is like affiliatesite.com/subid=oskmsejkmgeoakmfoeme and gives like tracking id and such. what other code do I need to add in to hide the affiliate link using that code?
    {{ DiscussionBoard.errors[2094269].message }}
    • Profile picture of the author dreamedia
      Originally Posted by KMatt View Post

      Ok so I put a redirect in to hide my landing page and am using
      <meta http-equiv="refresh" content="0;url='affiliate link'">
      on my redirect page but when it goes to the affilate site the link is like affiliatesite.com/subid=oskmsejkmgeoakmfoeme and gives like tracking id and such. what other code do I need to add in to hide the affiliate link using that code?
      you need to do a double meta-refresh to really blank the referrer...

      You have a link on your page that links to URL1, which then sends you to URL2, which then sends you to your affiliate link if the referrer is blank.

      <?php
      $referer = $_SERVER['HTTP_REFERER'];
      if($referer == "")
      {
      echo "<meta http-equiv=\"refresh\" content=\"0;url=URL2\">";
      }
      ?>

      <?php
      $referer = $_SERVER['HTTP_REFERER'];
      if($referer == "")
      {
      echo "<meta http-equiv=\"refresh\" content=\"0;url=youraffiliatelink.com\">";
      }
      ?>
      {{ DiscussionBoard.errors[2094525].message }}
      • Profile picture of the author williamrs
        Your PHP script checks if the referral is blank in both pages. So, most of the times you won't get the expected result in the first page. You should try something like this:


        page1.html (send people from your landing page to this page)

        <meta http-equiv=\"refresh\" content=\"0;url=page2.php\">

        //remove all the \ before the "



        page2.php (upload this file to the same directory as page1.html)

        <?php

        if (($_SERVER['HTTP_REFERER'] == "") || ($_SERVER['HTTP_REFERER'] == null))

        echo "<meta http-equiv=\"refresh\" content=\"0;url=affiliate_link\">";

        else

        header("Location: page1.html");

        ?>
        Signature
        Steal My Profit Strategy



        >> Download Now <<
        {{ DiscussionBoard.errors[2094636].message }}
  • Profile picture of the author proaffiliate26
    If you want a simple way to hide your referrer, consider checking out:

    Professional Short URL Cloaking Service

    It's really cheap if you want to upgrade:
    http://www.shrten.me/upgrade.html
    Signature

    If you ever need any help, don't hesitate to contact me! I love giving back to the community...
    Want to see the GREATEST list of websites to help you make money online? Check out this post!

    {{ DiscussionBoard.errors[2094524].message }}

Trending Topics