<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
	>
<channel>
	<title>Comments on: Cloaking Links:  How To Cloak Links For Free</title>
	<atom:link href="http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/</link>
	<description>The MasonWorld Late Night Internet Marketing Blog and Podcast -- Building Successful Internet Businesses One Night At A Time.  Host:  Mark Mason.</description>
	<lastBuildDate>Thu, 09 Feb 2012 04:50:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Charles</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-6388</link>
		<dc:creator>Charles</dc:creator>
		<pubDate>Mon, 30 Nov 2009 00:23:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-6388</guid>
		<description>You&#039;re absolutely right it&#039;s time to cut it out...</description>
		<content:encoded><![CDATA[<p>You&#8217;re absolutely right it&#8217;s time to cut it out&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vince</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-4635</link>
		<dc:creator>Vince</dc:creator>
		<pubDate>Sun, 22 Feb 2009 03:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-4635</guid>
		<description>Hey Mark,
thanks for the guide on the redirects, works beautifully, and the logging is definitely a plus!

I did however make some minor changes as follows:

For the .htaccess, I made the redirect go to the recommends directory for the cloak.php file, as I like to keep my root folder as clean as possible. It&#039;s also worth noting that some people may need to include the instruction to turn on rewriting if it isnt already done in their file. So my .htaccess looks like:

(/.htaccess)
#You only the next line once, so if it&#039;s in your file already don&#039;t include it again
RewriteEngine On 
# cloak affiliate links
RewriteRule ^recommends/([^\./]+)$ recommends/cloak.php?req=$1 [L]


Thats the minor htaccess change done, now onto the cloak.php file, which now sits IN the &#039;recommends&#039; directory along with the cloak.log file. I added some comments to your code so it was easier to see what was happening, and I also changed the date format to (YYYY-MM-DD HH:MM:SS) which now includes the time, and is in a format my database can play with at a later stage. My cloak.php now looks like this:

(/recommends/cloak.php)
&lt;?php
$request_id = $_GET[&#039;req&#039;]; //Get the request string
$myFile = &quot;/PATH/TO/YOUR_SITE/public_html/recommends/cloak.log&quot;; //Set the path to the log file
$refData = $_SERVER[&#039;HTTP_REFERER&#039;]; //Get Referrer information
$fh = fopen($myFile, &#039;a&#039;) or die(&quot;can&#039;t open log file&quot;); //Open the log file for writing
$stringData = date(&quot;Y-m-d H:i:s&quot;).&quot;,&quot;.$request_id.&quot;,&quot;.$refData.&quot;\n&quot;; //Concatenate date, request string and referrer information
fwrite($fh, $stringData ); //Write the concatenated data to a new line of the log file
fclose($fh); //Close the file

/*-----Request String Redirections here-----*/
if (strcasecmp ($request_id, &quot;markmason&quot;) == 0) { header( &#039;Location: http://www.masonworld.com/&#039; );}

if (strcasecmp ($request_id, &quot;google&quot;) == 0) { header( &#039;Location: http://www.google.com/&#039; );}

if (strcasecmp ($request_id, &quot;docs&quot;) == 0) { header( &#039;Location: http://www.google.com/docs&#039; ); }


Thats it. Thanks again for the post, and I hope this may help anyone else struggling.

Regards
Vince</description>
		<content:encoded><![CDATA[<p>Hey Mark,<br />
thanks for the guide on the redirects, works beautifully, and the logging is definitely a plus!</p>
<p>I did however make some minor changes as follows:</p>
<p>For the .htaccess, I made the redirect go to the recommends directory for the cloak.php file, as I like to keep my root folder as clean as possible. It&#8217;s also worth noting that some people may need to include the instruction to turn on rewriting if it isnt already done in their file. So my .htaccess looks like:</p>
<p>(/.htaccess)<br />
#You only the next line once, so if it&#8217;s in your file already don&#8217;t include it again<br />
RewriteEngine On<br />
# cloak affiliate links<br />
RewriteRule ^recommends/([^\./]+)$ recommends/cloak.php?req=$1 [L]</p>
<p>Thats the minor htaccess change done, now onto the cloak.php file, which now sits IN the &#8216;recommends&#8217; directory along with the cloak.log file. I added some comments to your code so it was easier to see what was happening, and I also changed the date format to (YYYY-MM-DD HH:MM:SS) which now includes the time, and is in a format my database can play with at a later stage. My cloak.php now looks like this:</p>
<p>(/recommends/cloak.php)<br />
&lt;?php<br />
$request_id = $_GET['req']; //Get the request string<br />
$myFile = &#8220;/PATH/TO/YOUR_SITE/public_html/recommends/cloak.log&#8221;; //Set the path to the log file<br />
$refData = $_SERVER['HTTP_REFERER']; //Get Referrer information<br />
$fh = fopen($myFile, &#8216;a&#8217;) or die(&#8220;can&#8217;t open log file&#8221;); //Open the log file for writing<br />
$stringData = date(&#8220;Y-m-d H:i:s&#8221;).&#8221;,&#8221;.$request_id.&#8221;,&#8221;.$refData.&#8221;\n&#8221;; //Concatenate date, request string and referrer information<br />
fwrite($fh, $stringData ); //Write the concatenated data to a new line of the log file<br />
fclose($fh); //Close the file</p>
<p>/*&#8212;&#8211;Request String Redirections here&#8212;&#8211;*/<br />
if (strcasecmp ($request_id, &#8220;markmason&#8221;) == 0) { header( &#8216;Location: <a href="http://www.masonworld.com/" rel="nofollow">http://www.masonworld.com/</a>&#8216; );}</p>
<p>if (strcasecmp ($request_id, &#8220;google&#8221;) == 0) { header( &#8216;Location: <a href="http://www.google.com/" rel="nofollow">http://www.google.com/</a>&#8216; );}</p>
<p>if (strcasecmp ($request_id, &#8220;docs&#8221;) == 0) { header( &#8216;Location: <a href="http://www.google.com/docs" rel="nofollow">http://www.google.com/docs</a>&#8216; ); }</p>
<p>Thats it. Thanks again for the post, and I hope this may help anyone else struggling.</p>
<p>Regards<br />
Vince</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Mason</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2096</link>
		<dc:creator>Mark Mason</dc:creator>
		<pubDate>Fri, 15 Aug 2008 03:09:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2096</guid>
		<description>Great news.  Glad I could be of service.</description>
		<content:encoded><![CDATA[<p>Great news.  Glad I could be of service.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Guten</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2094</link>
		<dc:creator>Dennis Guten</dc:creator>
		<pubDate>Thu, 14 Aug 2008 21:18:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2094</guid>
		<description>Mark,

Thanks for emailing me that file. Everything works fine now.

Dennis</description>
		<content:encoded><![CDATA[<p>Mark,</p>
<p>Thanks for emailing me that file. Everything works fine now.</p>
<p>Dennis</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Mason</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2092</link>
		<dc:creator>Mark Mason</dc:creator>
		<pubDate>Thu, 14 Aug 2008 18:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2092</guid>
		<description>Hey Dennis.  Got your email.

I see funny characters in your file -- possibly from cut and paste from the blog.  I also see that the path to the cloak.log file is not set in the file that you sent me.

I edited the file and I am emailing your a file that I think might work.

Regards,
Mark</description>
		<content:encoded><![CDATA[<p>Hey Dennis.  Got your email.</p>
<p>I see funny characters in your file &#8212; possibly from cut and paste from the blog.  I also see that the path to the cloak.log file is not set in the file that you sent me.</p>
<p>I edited the file and I am emailing your a file that I think might work.</p>
<p>Regards,<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Mason</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2091</link>
		<dc:creator>Mark Mason</dc:creator>
		<pubDate>Thu, 14 Aug 2008 16:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2091</guid>
		<description>Hey Dennis.  Looks to me like the .htaccess part is working, but there is some problem with the cloak.php file.  If you would like to email me your cloak.php file, I would be happy to take a look.</description>
		<content:encoded><![CDATA[<p>Hey Dennis.  Looks to me like the .htaccess part is working, but there is some problem with the cloak.php file.  If you would like to email me your cloak.php file, I would be happy to take a look.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Guten</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2090</link>
		<dc:creator>Dennis Guten</dc:creator>
		<pubDate>Thu, 14 Aug 2008 15:27:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2090</guid>
		<description>I guess I am missing something here. 
I put the line of code in my .htaccess file and uploaded
I created a directory called recommends in my site
I created the cloak.php file with the code you gave us, minus the quotes
I changed the ($request_id, “ed”) and I added a link on a page to http://www.findvintagepostcard.com/reccomends/ed
When I click on the link I get this...
Parse error: syntax error, unexpected T_STRING in /homepages/28/d95249100/htdocs/findvintagepostcard/cloak.php on line 6
Am I doing this correctly Mark? Maybe it has something to do with...
By the way, make sure that cloak.php has world execute permission, as apache usually has really limited permission to execute files.
I&#039;m not sure how to check this. I have a WordPress 2.6 site.</description>
		<content:encoded><![CDATA[<p>I guess I am missing something here.<br />
I put the line of code in my .htaccess file and uploaded<br />
I created a directory called recommends in my site<br />
I created the cloak.php file with the code you gave us, minus the quotes<br />
I changed the ($request_id, “ed”) and I added a link on a page to <a href="http://www.findvintagepostcard.com/reccomends/ed" rel="nofollow">http://www.findvintagepostcard.com/reccomends/ed</a><br />
When I click on the link I get this&#8230;<br />
Parse error: syntax error, unexpected T_STRING in /homepages/28/d95249100/htdocs/findvintagepostcard/cloak.php on line 6<br />
Am I doing this correctly Mark? Maybe it has something to do with&#8230;<br />
By the way, make sure that cloak.php has world execute permission, as apache usually has really limited permission to execute files.<br />
I&#8217;m not sure how to check this. I have a WordPress 2.6 site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Mason</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2087</link>
		<dc:creator>Mark Mason</dc:creator>
		<pubDate>Thu, 14 Aug 2008 04:39:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2087</guid>
		<description>@Mark -- thanks man.  

@Gaje --  There are lots of really nice people in the IM niche.  If anyone gives you attitude, you should run (do not walk) away.  

So, once you get the script installed and working correctly, then I recommend that you always use it.  That means that you always use the recommends/product URL in your post.

Just remember to test those links and make sure that you have done it correctly each time (don&#039;t want to miss out on any commissions).

Regards,
Mark</description>
		<content:encoded><![CDATA[<p>@Mark &#8212; thanks man.  </p>
<p>@Gaje &#8212;  There are lots of really nice people in the IM niche.  If anyone gives you attitude, you should run (do not walk) away.  </p>
<p>So, once you get the script installed and working correctly, then I recommend that you always use it.  That means that you always use the recommends/product URL in your post.</p>
<p>Just remember to test those links and make sure that you have done it correctly each time (don&#8217;t want to miss out on any commissions).</p>
<p>Regards,<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaje Master</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2086</link>
		<dc:creator>Gaje Master</dc:creator>
		<pubDate>Thu, 14 Aug 2008 04:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2086</guid>
		<description>oh, one more question for you. When I write my blog post do I use the affiliate link or do I type in recommends/affiliate name?</description>
		<content:encoded><![CDATA[<p>oh, one more question for you. When I write my blog post do I use the affiliate link or do I type in recommends/affiliate name?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Sierra at MeAndMyDrum.com</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2085</link>
		<dc:creator>Mark Sierra at MeAndMyDrum.com</dc:creator>
		<pubDate>Thu, 14 Aug 2008 04:11:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2085</guid>
		<description>That&#039;s why I always tell people that Mark rocks! ;)</description>
		<content:encoded><![CDATA[<p>That&#8217;s why I always tell people that Mark rocks! <img src='http://www.masonworld.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaje Master</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2084</link>
		<dc:creator>Gaje Master</dc:creator>
		<pubDate>Thu, 14 Aug 2008 04:08:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2084</guid>
		<description>You are pretty darn good at telling me like it is without making me sound like an idiot.lol. Thanks a heap this really got me to know what I needed to know.</description>
		<content:encoded><![CDATA[<p>You are pretty darn good at telling me like it is without making me sound like an idiot.lol. Thanks a heap this really got me to know what I needed to know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Mason</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2081</link>
		<dc:creator>Mark Mason</dc:creator>
		<pubDate>Wed, 13 Aug 2008 19:31:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2081</guid>
		<description>No problem.  We all start at the beginning.  And you are not a dummy if you are smart enough to ask the question.

Let&#039;s say that you have a site that you are blogging on -- like this one.  
It&#039;s url is http://www.masonworld.com

Now let&#039;s say you want to promote a product that you believe in.
For example, I like Josh Spaulding&#039;s Article Marketing Domination.

So, on my site, the URL for Article Marketing Domination is
http://www.masonworld.com/recommends/amd

In the cloak.php script, I have set up &quot;amd&quot; as an alias for the long affiliate link that you need to use if you want to get a commission selling Josh&#039;s AMD report.

Does that help?

So, in your case, you might want to promote Blog Mastermind.  
Instead of your current affiliate link of
http://www.blogmastermind.com/affiliates/index.php?af=820857

You could have something like this
http://gajemaster.com/recommends/blogmastermind

This gives you a clean, more pro look to your links.  It also theoretically reduces the temptation for someone to see that you&#039;re promoting an affiliate link and &quot;steal&quot; your commission.  The idea is that you are less &quot;in your face&quot; with the link.  I have no data to support this claim, but people do argue that.

Hope that helps.
Mark</description>
		<content:encoded><![CDATA[<p>No problem.  We all start at the beginning.  And you are not a dummy if you are smart enough to ask the question.</p>
<p>Let&#8217;s say that you have a site that you are blogging on &#8212; like this one.<br />
It&#8217;s url is <a href="http://www.masonworld.com" rel="nofollow">http://www.masonworld.com</a></p>
<p>Now let&#8217;s say you want to promote a product that you believe in.<br />
For example, I like Josh Spaulding&#8217;s Article Marketing Domination.</p>
<p>So, on my site, the URL for Article Marketing Domination is<br />
<a href="http://www.masonworld.com/recommends/amd" rel="nofollow">http://www.masonworld.com/recommends/amd</a></p>
<p>In the cloak.php script, I have set up &#8220;amd&#8221; as an alias for the long affiliate link that you need to use if you want to get a commission selling Josh&#8217;s AMD report.</p>
<p>Does that help?</p>
<p>So, in your case, you might want to promote Blog Mastermind.<br />
Instead of your current affiliate link of<br />
<a href="http://www.blogmastermind.com/affiliates/index.php?af=820857" rel="nofollow">http://www.blogmastermind.com/affiliates/index.php?af=820857</a></p>
<p>You could have something like this<br />
<a href="http://gajemaster.com/recommends/blogmastermind" rel="nofollow">http://gajemaster.com/recommends/blogmastermind</a></p>
<p>This gives you a clean, more pro look to your links.  It also theoretically reduces the temptation for someone to see that you&#8217;re promoting an affiliate link and &#8220;steal&#8221; your commission.  The idea is that you are less &#8220;in your face&#8221; with the link.  I have no data to support this claim, but people do argue that.</p>
<p>Hope that helps.<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaje Master</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-2080</link>
		<dc:creator>Gaje Master</dc:creator>
		<pubDate>Wed, 13 Aug 2008 18:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-2080</guid>
		<description>so, if i were to write an affiliate link such as http://affiliate name here/gajemaster.com I would need to put in recommends before gajemaster and it would cause it to not show gajemaster? Is this correct? I am a bit of a dummy in this area.</description>
		<content:encoded><![CDATA[<p>so, if i were to write an affiliate link such as <a href="http://affiliate" rel="nofollow">http://affiliate</a> name here/gajemaster.com I would need to put in recommends before gajemaster and it would cause it to not show gajemaster? Is this correct? I am a bit of a dummy in this area.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Mason</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-1891</link>
		<dc:creator>Mark Mason</dc:creator>
		<pubDate>Sat, 19 Jul 2008 04:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-1891</guid>
		<description>Hey Phillip.

Your comment made me smile.  

I would love to help you get this running.  Can you tell me where I lost you?  Then we can start from there. 

Thanks,
Mark</description>
		<content:encoded><![CDATA[<p>Hey Phillip.</p>
<p>Your comment made me smile.  </p>
<p>I would love to help you get this running.  Can you tell me where I lost you?  Then we can start from there. </p>
<p>Thanks,<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philip townsend</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-1884</link>
		<dc:creator>philip townsend</dc:creator>
		<pubDate>Thu, 17 Jul 2008 19:30:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-1884</guid>
		<description>Hi
I am new to all this and have been looking to cloak my affiliate links on my website and to be honest i dont think you explain everyhting in laymans terms.  I think you presume that people know more.  I haven&#039;t got a damn clue what you are talking about.</description>
		<content:encoded><![CDATA[<p>Hi<br />
I am new to all this and have been looking to cloak my affiliate links on my website and to be honest i dont think you explain everyhting in laymans terms.  I think you presume that people know more.  I haven&#8217;t got a damn clue what you are talking about.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Forest Parks</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-1585</link>
		<dc:creator>Forest Parks</dc:creator>
		<pubDate>Tue, 03 Jun 2008 05:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-1585</guid>
		<description>I&#039;m only just starting to see the importance of tracking individual links on my sites and actually have a few articles coming up where this may be very useful.

Sometimes it&#039;s better to recommend a product that you believe in and not have you affiliate link shown so that no one thinks you are lying (if that makes sense!!).

Anyway this post has been stored in a safe place for future ref.</description>
		<content:encoded><![CDATA[<p>I&#8217;m only just starting to see the importance of tracking individual links on my sites and actually have a few articles coming up where this may be very useful.</p>
<p>Sometimes it&#8217;s better to recommend a product that you believe in and not have you affiliate link shown so that no one thinks you are lying (if that makes sense!!).</p>
<p>Anyway this post has been stored in a safe place for future ref.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Mason</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-1558</link>
		<dc:creator>Mark Mason</dc:creator>
		<pubDate>Fri, 30 May 2008 17:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-1558</guid>
		<description>Thanks, Mark.

Well, I definitely like having all of the links in one file, and I like having the tracking code there.  In the end, the result could be similar (assuming you can track with your one-line solution).

Regards,
Mark</description>
		<content:encoded><![CDATA[<p>Thanks, Mark.</p>
<p>Well, I definitely like having all of the links in one file, and I like having the tracking code there.  In the end, the result could be similar (assuming you can track with your one-line solution).</p>
<p>Regards,<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Sierra at MeAndMyDrum.com</title>
		<link>http://www.masonworld.com/making-money-on-the-web/cloaking-links-how-cloak-links-for-free/comment-page-1/#comment-1557</link>
		<dc:creator>Mark Sierra at MeAndMyDrum.com</dc:creator>
		<pubDate>Fri, 30 May 2008 12:41:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.masonworld.com/?p=185#comment-1557</guid>
		<description>Hmm, interesting approach. Hadn&#039;t thought of it. I&#039;ve just been creating a 1-line php file for each product I recommend. The file contains the true URL and I put it in a directory called &quot;recommends&quot;. Then I just link to that file and it redirects readers to the destination. Looks like the same amount of work, so when comparing it to your method, is there some advantage over the other, or would you say it&#039;s just two ways of doing the same thing?</description>
		<content:encoded><![CDATA[<p>Hmm, interesting approach. Hadn&#8217;t thought of it. I&#8217;ve just been creating a 1-line php file for each product I recommend. The file contains the true URL and I put it in a directory called &#8220;recommends&#8221;. Then I just link to that file and it redirects readers to the destination. Looks like the same amount of work, so when comparing it to your method, is there some advantage over the other, or would you say it&#8217;s just two ways of doing the same thing?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.masonworld.com @ 2012-02-09 10:13:51 -->
