Go Back   WarriorForum - Internet Marketing Forums > Warrior Support Forums > Programming Talk
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
Share
LinkBack Thread Tools
Old 08-16-2012, 10:30 AM   #1
www.JeffBurritt.com
War Room Member
 
Jeff Burritt's Avatar
 
Join Date: Jul 2010
Location: Earth for now
Posts: 346
Blog Entries: 26
Thanks: 112
Thanked 319 Times in 254 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Jeff Burritt
Default Create simple affiliate redirect page?

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

Jeff Burritt is offline   Reply With Quote
Old 08-16-2012, 02:49 PM   #2
Real Warrior
 
godavid's Avatar
 
Join Date: Feb 2010
Location: Budapest & Bangkok
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Social Networking View Member's FaceBook Profile 
Default Re: Create simple affiliate redirect page?

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

godavid is offline   Reply With Quote
Old 08-16-2012, 03:01 PM   #3
Lisa Dozois
War Room Member
 
lisag's Avatar
 
Join Date: Jan 2006
Location: Florida, USA.
Posts: 669
Thanks: 109
Thanked 265 Times in 125 Posts
Social Networking View Member's Twitter Profile 
Default Re: Create simple affiliate redirect page?

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.

-- Lisa G
lisag is offline   Reply With Quote
Old 08-17-2012, 12:51 AM   #4
100% Warrior
War Room Member
 
webpeon's Avatar
 
Join Date: Jan 2012
Location: New Zealand
Posts: 551
Blog Entries: 2
Thanks: 72
Thanked 66 Times in 61 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via Skype™ to webpeon
Default Re: Create simple affiliate redirect page?

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

webpeon is offline   Reply With Quote
Old 08-17-2012, 03:19 AM   #5
Active Warrior
War Room Member
 
Join Date: Sep 2006
Location: Germany
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Yahoo to danielepr
Default Re: Create simple affiliate redirect page?

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.

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
danielepr is offline   Reply With Quote
Old 08-17-2012, 05:29 AM   #6
Active Warrior
 
tweakr's Avatar
 
Join Date: Dec 2011
Posts: 94
Thanks: 2
Thanked 14 Times in 12 Posts
Default Re: Create simple affiliate redirect page?

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?

Free WordPress Themes from Seismic Themes.
tweakr is offline   Reply With Quote
Old 08-17-2012, 05:42 PM   #7
Active Warrior
 
Join Date: Jul 2012
Location: india
Posts: 34
Thanks: 3
Thanked 1 Time in 1 Post
Default Re: Create simple affiliate redirect page?

Quote:
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 .

Playmovie online | A right place to watch Full length movies online
Watchmovies free | Watch Full length Hollywood Movies For Free.
mbwani is offline   Reply With Quote
Old 08-18-2012, 11:22 AM   #8
Active Warrior
 
tweakr's Avatar
 
Join Date: Dec 2011
Posts: 94
Thanks: 2
Thanked 14 Times in 12 Posts
Default Re: Create simple affiliate redirect page?

@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.

Free WordPress Themes from Seismic Themes.
tweakr is offline   Reply With Quote
Old 08-18-2012, 03:43 PM   #9
Warrior Member
War Room Member
 
Join Date: Jun 2011
Posts: 11
Thanks: 1
Thanked 1 Time in 1 Post
Default Re: Create simple affiliate redirect page?

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
}


?>
Liran Williams is offline   Reply With Quote
Old 08-18-2012, 05:21 PM   #10
HyperActive Warrior
 
Join Date: Mar 2007
Location: , , Canada.
Posts: 266
Thanks: 2
Thanked 45 Times in 40 Posts
Default Re: Create simple affiliate redirect page?

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
Cram is offline   Reply With Quote
Old 08-18-2012, 06:50 PM   #11
Active Warrior
 
Join Date: Jul 2012
Location: india
Posts: 34
Thanks: 3
Thanked 1 Time in 1 Post
Default Re: Create simple affiliate redirect page?

Quote:
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.

Playmovie online | A right place to watch Full length movies online
Watchmovies free | Watch Full length Hollywood Movies For Free.
mbwani is offline   Reply With Quote
Old 08-20-2012, 11:47 PM   #12
Warrior Member
 
Join Date: Nov 2009
Location: India
Posts: 21
Thanks: 0
Thanked 1 Time in 1 Post
Contact Info
Send a message via Skype™ to manohar1310
Default Re: Create simple affiliate redirect page?

I know of a script which automatically creates site as per your requirement but cannot recall.I will check and let you know soon.
manohar1310 is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > Warrior Support Forums > Programming Talk

Bookmarks

Tags
affiliate, affiliate redirect, create, page, redirect, sales funnel, simple

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 03:32 AM.