Meta redirect and referrer

Angelus_1984

Registered Member
Joined
Aug 14, 2009
Messages
76
Reaction score
18
Hello,

let's say I want to have a landing page for manual screening:

directdomain.com

and have a php script to redirect to my affiliate link if it is

directdomain.com/?key=randomnumber

...will this go under the radar? Will there only be the domain as referrer? If there are many links like button, text link, image link etc. would they normaly see which element the user has clicked on?

Thanks in advance.
 
its possible in php flags below is the example code

PHP:
$flags = ['BHW', 'BHW_1', 'BHW_2'];
$url_res = $urls[mt_rand(0, count($urls) - 1)];
$url_res .= "?" . $flags[mt_rand(0, count($flags) - 1)];

Good luck
 
OP this works but it's not really cloaking. Passing parameters to a script so you get somewhere different is pretty much standard everywhere.
 
Back
Top