PHP redirect for my 2nd method...
To elaborate a bit on the 2nd method I posted about - I will create a subdirectory for the day I'm posting on (calling it "121307" for today, for example). In that directory, I'll just have 1 file -
index.php and will use a PHP header/array redirect script within it:
Code:
<?php
// Filename: index.php
// Placed in the directory you're using to redirect from.
/*
Very easy to use just change the values between "" below the array function.
E.g If you have an auction you're promoting
http://yourdomain.com/subdirectory/index.php?kw=yourkeywordhere. This example has the same meaning for the other entries in $links variable.
*/
$links = array(
"keyword1" => "http://ebayaffiliateURL1.com",
"keyword2" => "http://ebayaffiliateURL2.com",
"keyword3" => "http://ebayaffiliateURL3.com",
"keyword4" => "http://ebayaffiliateURL4.com"
);
header("Location:".$links[$_GET['kw']]);
exit;
?>
That way you're just modifying 1 PHP file per day in 1 subdirectory...and using keyword values to denote that particular CL ad/auction, pointing it to its corresponding ebay affiliate URL.
If you're just copying/pasting auction URLs from ebay blogs you've created w/ phpBay pro, then that works. But if you're not even bothering to set the blog up w/ phpBay to pull in auctions...you can use ebay's
Flexible Destination Tool to create an affiliate URL from
any ebay auction. Just copy/paste the ebay auction URL into that tool and it will create the affiliate URL for you. So you can pick & choose that way w/out using phpBay.
EDIT:
To clarify - if I wanted to link to an ebay auction for a Dell XPS M1330 laptop...I would go find the ebay affiliate URL for that particular auction (or create it using the Flexible Destination Tool), create another entry in the index.php array replacing "keywordX" with "dellm1330" and replacing "http://ebayaffiliateURLX.com" with the ebay affiliate URL for that particular auction. Save index.php w/ that change. (upload it to the subdirectory if it's not already there)
Then, the link to point to that would just be
MyDomain.com – Buy Domains for $8.95 – Free Domain Name Management tools
That's the link you'd put in your email autoresponder for your CL ad. I never just type the link out for the person to see. I'll say something like, "You can see a lot more about it HERE..." and hyperlink the word "HERE" w/ my redirect link.