If you're using the Infusionsoft Affiliate module to drive referrals to your product or service, it'll be obvious to you that you're not going to get a whole lot of word-of-mouth referrals from your affiliates because no one is going to want to refer someone to
http://appname.infusionsoft.com/go/redirect/affiliatecode. The URLs are just too long.
While working for our case study business
All About Spelling last week, I came across an easy way to facilitate word-of-mouth referrals from affiliates. All About Spelling runs their website on the domain
http://www.all-about-spelling.com. They also own
http://www.allaboutspelling.com but they weren't doing anything with that domain. So, we decided to use allaboutspelling.com for word of mouth referrals.
Here's what I did:
In the root public_html (or www) folder of allaboutspelling.com I created an .htaccess file and Included these 3 lines:
| Code: : |
# Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*) http://appname.infusionsoft.com/go/redirect/$1/simple_url [NC]
|
The # before Options +FollowSymlinks can be removed if you have errors.
You'll need to replace appname with your Infusionsoft account name and you'll need to replace "redirect" with one of your affiliate redirects. "simple_url" is added at the end so that you can track word-of-mouth referrals through this "simple url".
This allows All About Spelling affiliates to tell their friends to visit allaboutspelling.com/affiliatecode.
When the referred friend goes to that url, the .htaccess file parses out the affiliate code and sends the visitor through the actual affiliate redirect. No long URLs needed.
Now word of affiliates who refer mostly through word-of-mouth, don't need to remember a long URL.
I set up the same thing for Infusionsoft affilates at infusionsoftdemo.com. This domain will redirect to the demo page using your affiliate code like this:
http://infusionsoftdemo.com/affiliatecode
Comments?