What's the best method for cloaking? What do you recommend?

Joined
Sep 13, 2012
Messages
24
Reaction score
0
Hi,

I'm a noob in IM. Just started.

a) What's the best method to cloak the affiliate links in Wordpress?

b) Also what's the best way to cloak links when posting in social sites (other than bitly, tinyurl etc)

Thanks in advance
 
You can use some link cloaker plugin.
Just type "Link Cloaker WP Plugin" on google and there's many.
I've forgot the name of plugin that I ever used before.
 
True there are a plenty of cloaking plugins, all you gotta do is write it on Google. Please share it with us as well which cloaking plugins you are going to use.
 
I use the Pretty Links plugin on Wordpress sites, and simple PHP/Javascript on everything else.
 
I use this one http://wordpress.org/extend/plugins/wp-noexternallinks/
 
I find it funny that no one mentioned using subdomains from your own domain. Using this method you will make the links look better. Just set up a subdomain in your cpanel and redirect it to your affiliate link.
 
301 redirect / subdomain / subfolder redirect looks great

if you use url shortner service try to be sure they dont show a 10 second advertising page befor redirecting , this realy kills traffic and convertion

also the popular tiny url starts to become banned/bloked from many popular advertising / social website

have a nice day

fukien
 
Sorry if this is a dumb question but why does one need to cloak links... from what i have read about seo cloaking it means hiding content so search engines see it but people don't. so why would you hide a link from people but allow it fro search engines?
 
buy a cheap domain namecheap are doing .us for about $4 at the moment.

install wordpress with a coming soon page

use pretty link to cloak your links (it will let the cloaked link stay in the browser not sure if thats the free version or paid though)
 
I find it funny that no one mentioned using subdomains from your own domain. Using this method you will make the links look better. Just set up a subdomain in your cpanel and redirect it to your affiliate link.


what this guy said
 
sorry maybe sedukit late reply, to hide your affiliate links there are 2. The first one we url domain forwarding domain via the control panel or create a php script via cpanel, the advantage of this method can be used in all kinds of domains and types of website but I think this way too difficult and complicated so we use the second way only. And the second using the plugin as well as enhance the affiliates to hide your affiliate links, this method is very easy and quick it only takes 5 minutes to mengistallnya in worpress, shortcomings can not be used on blogspot or joomla-based blog.
if one does not it beg,,,
 
Well, It is better to use linktrackr.com, for example. They give you 10 links to cloak and statistics for free. You name your link as you like, so that it looks like your_name.linktrackr.com/name_of_your_affiliation_link.
 
get SE engines IPs from robtex, then i convert it to cidr and detect by such functions
PHP:
function net_match ( $network , $ip ) {
    $ip_arr = explode ( '/' , $network );
    $network_long = ip2long ( $ip_arr [ 0 ]);
    $x = ip2long ( $ip_arr [ 1 ]);
    $mask = long2ip ( $x ) == $ip_arr [ 1 ] ? $x : 0xffffffff << ( 32 - $ip_arr [ 1 ]);
    $ip_long = ip2long ( $ip );
    return ( $ip_long & $mask ) == ( $network_long & $mask );
    }


function IpDetect($REMOTE_ADDR,$folder) {
    $stop_ip = explode("\n",file_get_contents('FILE WITH IP IN CIDR FORMAT divided by NEW LINE');
    foreach ($stop_ip as $ip) {
            if (net_match ($ip, $REMOTE_ADDR)) return true;
             }
    if ( substr_count($REMOTE_ADDR,":") > 0 && substr_count($ip,".") == 0) return true;// ipv6
    return false;
    }


This functions will mark all IPv6 as bots. Also official ips of bots in CIDR format you can get PMed me.
 
Back
Top