Create simple affiliate redirect page?

by Jeff Burritt Banned
11 replies
I want to create my own website video sales page which has a promo video and a 'join now' button at the bottom. For example: MyWebsite.com And, then for example, my affiliate ID will be 'Jeff'

Obviously the 'join now' button will redirect the visitor to the parent company's site. It will have my affiliate ID in it. To direct them from MyWebsite.com to XYZcompany.com/Jeff
This part so far is simple. And I know how to do it.

But, I'd like others to be able to use my sales page too. And have the 'join now' button redirect to the XYZcompany's site with their affiliate ID in it.

Someone told me to do a simple s1 funnel, but don't know any more. Does anyone know how to do this, or have a better idea?

Thanks,

Jeff
#affiliate #affiliate redirect #create #page #redirect #sales funnel #simple
  • Profile picture of the author godavid
    Just pass the variable via GET method.

    PHP example:

    Your friend should use their own affiliate code with your site URL: yourwebsite .com/index.php?ref=TheirAffiliateID

    In your website code (index.php) the link or the redirect should look like this:

    XYZcompany .com/?ref=<?=$_GET['ref']?>

    So the visitor will be redirected here: XYZcompany .com/?ref=TheirAffiliateID

    {{ DiscussionBoard.errors[6809529].message }}
  • Profile picture of the author lisag
    Rather than expose the url and affiliate ID in the URL, you could also let your affiliates reach the site with a form post as well. Then it could be their choice.

    XYZcompany .com/?ref=<?=$_REQUEST['ref']?> would process a GET or a POST on the fly.
    Signature

    -- Lisa G

    {{ DiscussionBoard.errors[6809584].message }}
  • Profile picture of the author webpeon
    a friendly way to do it is to use subdomains with a common index page and a custom button with their unique link

    jeff.salespage.com -> sales page -> button redirects to mainsite.com/jeff
    webpeon.salespage.com -> sales page -> button redirects to mainsite.com/webpeon

    gives you the advantage of grabbing each affiliate pages stats in cpanel
    Signature
    Web 2 Mobile
    The Future of The Web
    {{ DiscussionBoard.errors[6812027].message }}
    • Profile picture of the author danielepr
      Using the solution suggested by webpeon will also increase you ranking in the search engines.
      You can also (and your affiliates too) cloak your link using bitly (at bitly.com). They offer also a tracking service and API.
      The Butterfly Marketing script as well will help you in this without any trouble.
      Signature

      Smart Local Business Finder: www.best-marketing-ideas.com/yt/lbmt.php
      Advertising secrets never revealed in any better way: www.copywriting-videos.com/cwv/index7.php

      {{ DiscussionBoard.errors[6812573].message }}
    • Profile picture of the author mbwani
      Originally Posted by webpeon View Post

      a friendly way to do it is to use subdomains with a common index page and a custom button with their unique link

      jeff.salespage.com -> sales page -> button redirects to mainsite.com/jeff
      webpeon.salespage.com -> sales page -> button redirects to mainsite.com/webpeon

      gives you the advantage of grabbing each affiliate pages stats in cpanel
      i want to create a redirection page for my movie website so that when anybody clicks on the external link it must bypass through the redirection page with click here button in between. so what is the best way of doing tha t it must not hurt ranking in the search engines .
      thanks in advance .
      {{ DiscussionBoard.errors[6816719].message }}
  • Profile picture of the author tweakr
    I must be missing something here? How are you going to decide who's affiliate id to use? Is it going to be decided from a referring site or something like that?
    {{ DiscussionBoard.errors[6813028].message }}
  • Profile picture of the author tweakr
    @mbwani The best way to do that without hurting rankings would be to use JavaScript.

    Create a script so that when a link is clicked it checks the domain name and if it's different from yours redirect to a certain page on your site that has the click here to continue button.
    {{ DiscussionBoard.errors[6820129].message }}
    • Profile picture of the author mbwani
      Originally Posted by tweakr View Post

      @mbwani The best way to do that without hurting rankings would be to use JavaScript.

      Create a script so that when a link is clicked it checks the domain name and if it's different from yours redirect to a certain page on your site that has the click here to continue button.
      i am very new to this so can u please help me in creating that code . i want to redirect all external links to mypage.php, which is located in root directory . so please help.
      {{ DiscussionBoard.errors[6821911].message }}
  • Profile picture of the author Liran Williams
    This PHP code should help...

    You are finding which website sent the visitor. And you're only taking the domain name. Then depending if the visitor was sent from your website or an affiliate's website, then you can decide how to handle the page.

    I hope it helps. Just let me know if you have any questions.

    <?php

    if(isset($_SERVER['HTTP_REFERER']))
    {
    $url = $_SERVER['HTTP_REFERER'];
    $domain = explode('/', $url);

    if ($domain[2] == "yourdomain.com")
    {
    //visitor from your website



    }
    else
    {
    //visitor from affiliate

    }
    }
    else
    {
    //No Referrer - no affiliate
    }


    ?>
    {{ DiscussionBoard.errors[6821256].message }}
    • Profile picture of the author Cram
      You can use bevomedia as your redirect,
      using their mutable offers features can really make it easy for you.

      in the steps when creating your campaign, setup a few different aff offers into the tracker.


      Then in step #5 you get all your redirect codes



      Also you will be able to track your stats.
      Its what i've been using
      {{ DiscussionBoard.errors[6821625].message }}
  • Profile picture of the author manohar1310
    I know of a script which automatically creates site as per your requirement but cannot recall.I will check and let you know soon.
    {{ DiscussionBoard.errors[6833944].message }}

Trending Topics