Home >
General >
Affiliate Marketing Forum
Referrer URL hiding (double meta refresh?) & URL Get request hiding (8)
06-14-2015 04:26 PM
#1
bluedoors (Member)
Referrer URL hiding (double meta refresh?) & URL Get request hiding
Hi All,
Many thanks in advance if you can assist, tracking is not my strong point though am doing my best to learn. I have tried the search function but can't quite find the answer to this.
So I have mywebsite.com and I send traffic to company.com.
To send traffic, I use their affiliate link which the normal ?affID=xxx (amongst other details).
However, I do not wish company.com to know where I am sending traffic from. I do have a genuine reason (at least I hope so!) in that company.com also own an affiliate business and I expect they would look to copy the way I am sending traffic, thus adding more competition for my website!
What I am looking to do is:
1. Prevent company.com from seeing the referrer url - from what I understand I need to implement a double meta refresh?
2. However, company.com could still visit mywebsite.com and see the link I am using (and therefore see my affiliate ID and they would then see it is going well so could then copy my website). Therefore, I believe I need to prevent company.com from seeing the affID I am using also in the link use on my website. From what I understand this is hiding the GET request part of the url. Is there a way to do this also? (from searching I see some suggestions about using POST instead?)
Btw if it makes any impact I am happy for the company.com to load in a separate tab (this is likely preferable).
Many thanks if you could help!
chris
09-23-2015 09:36 PM
#2
bluedoors (Member)
Bump!
I ended out using ClickMeter.com as they provide referral masking/cloaking referrer url. This company.com won't see in their google analytics that I am sending traffic from mywebsite.com.
However, I still have the issue of query string masking/cloaking.
i.e. on mywebsite.com, I have affiliate link for company.com/?affID=xxx
Instead, I want this to show as company.com without the query still. Help much appreciated on this! I appreciate someone could still use 'Inspect Element' to dig into the cookies but I'd just like to ensure this information isn't easily viewable by showing the link as company.com/?affID=xxx
ClickMeter support said their tool(s) couldn't help but I have seen this in numerous affiliate sites.
Many thanks if you can help!
chris
09-24-2015 01:16 AM
#3
stitch (Member)
Basic client-side:
HTML Code:
<a href="http://www.google.com" onclick="this.href='http://www.stuff.co.nz'; this.onclick = null;">Link</a>
When you hover over the link it shows google.com, link redirects to stuff.co.nz (swap out for your aff link).
It won't stop people someone who's looking through the code from figuring it out... but very few things will client-side. Also won't cover users with javascript turned off.
Basic server-side:
Create a new PHP page on your site, i.e outlink.php, containing the following:
Code:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://yoururl.here/?affid=12345");
?>
And link to
http://mysite.com/outlink.php
09-25-2015 09:04 AM
#4
egorpe (Member)
Suppose you want to hide your mywebsite.com site from the company.com
Most affiliate network trackers are still HTTP so you sent traffic from mywebsite.com to http://company.com?affid=evildude.
Just make mywebsite.com HTTPS (https://mywebsite.com) by buying $9 SSL certificate off namecheap.com and referral info won't go through plus you'll have a plausible deniablity as you didn't formally "hide" it but rather enables SSL on a website which is normal practice nowadays and even encouraged for SEO.
09-25-2015 10:56 AM
#5
bluedoors (Member)

Originally Posted by
stitch
Basic client-side:
HTML Code:
<a href="http://www.google.com" onclick="this.href='http://www.stuff.co.nz'; this.onclick = null;">Link</a>
When you hover over the link it shows google.com, link redirects to stuff.co.nz (swap out for your aff link).
It won't stop people someone who's looking through the code from figuring it out... but very few things will client-side. Also won't cover users with javascript turned off.
Basic server-side:
Create a new PHP page on your site, i.e outlink.php, containing the following:
Code:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://yoururl.here/?affid=12345");
?>
And link to
http://mysite.com/outlink.php
Thanks for your reply. Apologies in advance if I misunderstand, but if the link was
http://www.stuff.co.nz/?affID=123, would the url in the address bar include the query string?
I am currently able to replace
http://www.stuff.co.nz/?affID=123 with say
www.mysite.com/go/stuff.co.nz (or anything else) but the issue I have is when a user then clicks it they still see
http://www.stuff.co.nz/?affID=123 in the address bar (so whilst I have hidden the affiliate link when they click, they still see it when they arrive on the site).
Please let me know if you know of a solution to this or if I am mistaken.
If it helps, to give an example:
www.casinomanual.co.uk
If I click on say the Mr Green link:
http://www.casinomanual.co.uk/go/visit-mr-green-casino/
This sends me to:
https://mrgreen.host.bannerflow.com/...78C32D367B64C1
Whereas if I click on say the Betsafe link:
http://www.casinomanual.co.uk/go/visit-betsafe-casino
This sends me to:
https://www.betsafe.com/en/casino (for maybe 0.1 second it has a query string then insta-redirects to
https://www.betsafe.com/en/casino
If I click on say the Grovesnor link:
http://www.casinomanual.co.uk/go/vis...svenor-casino/
This sends me to:
http://www.grosvenorcasinos.com/slots-and-games
So what I am looking to do is to repeat the Betsafe and Grovesnor behaviour, so when the user lands on their website there is no query string (I can currently on do the first part of changing the link on my affiliate website).
Many thanks for any help, is much appreciated.
09-25-2015 10:58 AM
#6
bluedoors (Member)

Originally Posted by
egorpe
Suppose you want to hide your
mywebsite.com site from the
company.com
Most affiliate network trackers are still HTTP so you sent traffic from
mywebsite.com to
http://company.com?affid=evildude.
Just make
mywebsite.com HTTPS (
https://mywebsite.com) by buying $9 SSL certificate off namecheap.com and referral info won't go through plus you'll have a plausible deniablity as you didn't formally "hide" it but rather enables SSL on a website which is normal practice nowadays and even encouraged for SEO.
Thanks egorpe, my affiliate site is currently https, unfortunately i think most of the sites I am promoting use https too and so the redirect will still show, also I do not think this would still show the query string when the user lands on the site? I have posted a few casino examples above, if you have a couple of mins to read through would be much appreciated.
09-25-2015 12:59 PM
#7
stitch (Member)
Ah, I misunderstood. Sorry.
Other than iFraming, which the advertiser probably won't like and is pretty easy for them to spot anyway, I'm not aware of a way to achieve that if they don't redirect affiliate id query strings themselves (even then, they're the ones who redirected it and will be able to trace). To the best of my knowledge, once the user leaves your web server there's nothing else you can change.
09-25-2015 01:05 PM
#8
bluedoors (Member)

Originally Posted by
stitch
Ah, I misunderstood. Sorry.
Other than iFraming, which the advertiser probably won't like, I'm not aware of a way to achieve that if the they don't redirect affiliate id query strings themselves. To the best of my knowledge, once the user leaves your web server there's nothing else you can change. I'm definitely ready to be proved wrong though!
Thanks stitch, I am in the same boat in terms of once the user is on their site then the possibilities end.
My only thought I have is that you would (somehow) send user to both:
http://www.stuff.co.nz/?affID=123
and
http://www.stuff.co.nz/
However, (somehow) only the second link loads whilst the affID=123 never actually opens.
Alternatively, if you sent users to a different site e.g.
www.cookiedropper.com that dropped the cookie (somehow) and then re-directed them to
http://www.stuff.co.nz/.
Thanks again, if anyone can prove us wrong please post!
Home >
General >
Affiliate Marketing Forum