Best Way Of Cloaking Traffic When DirectLinking?

Status
Not open for further replies.

lalaha

Lobster Fisherman
May 20, 2008
333
2
0
New Zealand!
I was wanting to direct link to an affiliate offer, but I want to be safe from the aff company possibly stealing my keywords.

Whats the best way to cloak your refferal traffic when direct linking?
 


iframe or meta/js refresh.

check that the referrer is your site before redirecting to the offer though
 
The best 100% foolproof way that doesn't require JS enable is just header:location in PHP, creating a nice search engine friendly 302 redirect.

<?php
header("Location: http://www.example.com/");
?>
 
Meta:
<meta http-equiv="REFRESH" content="X;URL=yourpage.html">
x is the number of seconds until redirect

JavaScript:
<script type="text/javascript">
<!--
window.location = "http://www.google.com/"
//-->
</script>
If you do JS make sure you have Meta below it incase they have JS disabled.
 
but then Google will see nothing, that won't screw you on QS?
You don't restrict the homepage..just the affiliate url redirection one. And while I havent tested it, I'm 99% sure it's fine(I havent had any issues). Robots.txt isn't seen as sketchy from them. You're allowed to deny.
I think of it like this: They want our LPs to be like normal sites. Normal sites DO forbid the crawlers from certain urls. So it'd be insane to set it up otherwise.
 
If you are DIRECT LINKING you can't cloak.

If you are pushing through an iframe or any other method - then meta refresh.

That's all there is to it.
 
Status
Not open for further replies.