One of the best ways to build inbound links is to create an affiliate program. It’s also a great way to drive real customer traffic from related sites.
But…don’t just sign up for one of the big third-party affiliate programs–you’ll get the customers, but you’ll be throwing away a terrific opportunity to get great inbound links. Today, I’m going to try to talk you into writing your own affiliate program from scratch.
Companies like Commission Junction and Google’s own AdSense will do the implementation for you (and take a piece of the pie), but the real reason NOT to use one of these services is that the links to your site are going to be redirected through THEIR site, so that they can track the clicks, sales, etc. What this means, of course, is that when a crawler looks at your affiliate’s page, it’s going to see a link to the third-party affiliate site, NOT your site.

But surely there’s off-the-shelf software already written that you can just install on your servers and configure, right? (You’re not being lazy, you’re being EFFICIENT… right…).
True. There are is a ton of it out there. But the stuff that really works well is going to be popular, and if it’s popular, and tons of sites start using it, Google is going to eventually be able to spot some pattern in the linking or tracking identifier in the URL etc. and throw it into the “paid links” black hole. And whether a particular package does/does not skate under the radar with Google today doesn’t really matter–why spend your time integrating something that Google’s paid link assassins are likely to target in the near future?

Besides, it’s NOT that hard. Let’s run through a quick outline of what you’re going to need to do to roll your own affiliate program to get link juice where you want it.
Affiliate Signup
First, you’ll need an affiliate sign-up form. Collect the basics: company name, tax ID, address, email, password, phone, etc. and store it in a table in your database. Generate a numeric affiliate ID when you do this (I use the integer primary key from the database table for mine). I recommend that you also include a field for % commission–although you’ll probably have the same commission for 95% of your affiliates, it’s nice to have the flexibility to quietly offer a few key partners more to get them on board. Putting the % commission in this table will make your reporting and affiliate payments much easier.
Affiliate Linking Strategy
Next, you’ll want an easy way to generate links and linking code for the affiliates. DO NOT get all clever on us and create a single page that redirects after collecting the tracking info! You’ll funnel all the link juice to a worthless page. And don’t start talking 301s…there’s a much easier, cleaner way.
Simply add a parameter to your URL (e.g. affid=1234); write a little global include file that looks for the parameter in the URL, pulls it out, and stuffs it in a cookie. Then, use good old rel=canonical to tell the search engines that the canonical version of this page is the version without that affiliate ID parameter. Here’s an example written in plain old ancient ASP:

P.S. while calling the parameter “affid” probably makes this example more readable, if it were ME, I’d name the parameter something that looks less like an affiliate program ID ![]()
Tracking Sales
Add a column for the affiliate ID to the database table where you track purchases. At purchase time, suck the affiliate ID out of the cookie. (And, when you write the cookie initially, I recommend a 60 day or 90 day lifespan on the cookie so that your affiliates will get credit if the customer returns later and makes a purchase…affiliates like this
)
If your experience mirrors mine, your program is going to attract a ton of little affiliates that rarely generate any sales, plus a handful of affiliates that deliver 80% of the customers. For starters, create yourself a report you can run monthly that joins your orders table to the new affiliates table by affiliate ID, so you can see who you owe commissions to. Spend your time GETTING affiliates on board, and worry about automating payments to them after they’re making you tons of cash; you’ll most likely just have a handful of checks to write each month for a while.
Encouraging Links
Make it brainless & painless to link to detail pages on your site. Let the affiliate login, stuff their ID and login state in a session-expiring cookie, and on each page that might be link-worthy (e.g. your product detail pages), look for that cookie–if you see it, add a little block to the page with a callout and your linking HTML.
Linking HTML Tricks
Of course, providing the linking HTML gives you the opportunity to encourage favorable anchor text. If you have thumbnails of your products available, give the affiliate two options: an image link, and a text link. Put the linking HTML in a read-only multi-line text area (http://www.w3.org/TR/html401/interact/forms.html#h-17.7) and add an on-click handler that selects all of the text in the box to make it easy for them to copy the HTML (or, much more difficult for them to screw it up!).
-
Affiliate Program Comparison Made EasyPopular Affiliate ProgramsYouTube Tests Skip Button on Pre-Roll AdsRussell Brunson Affiliate Training Show on UStreamAffiliate Convention LA Next Week, Free Admission Open Til FridayGoogle Blogger Integrates Amazon AssociatesGoogle Caffeine May Be Months AwayAdzZoo Affiliate – SEO ModelFREE Instant Affiliate WebsiteAdzZoo Affiliate – SEO, PPC & Internet Marketing
Posted in SEO | No Comments »








