As long as you don't care about losing some visitors...
You can find additional info on: Referer.us Premium URL Redirection
Someone sent me this recently and it has some cool information regarding cloaking there.
----
1) This is the first redirect we use instead of "only just using an instant meta-refresh redirect," it's a javascript form post redirect.
2) We then would follow this with a javascript window.location redirect. We use backup meta-refreshes with a 1 second delay, if the user doesn't have javascript.
--
<html>
<!-- Replace Google with whatever url you like !-->
<head>
<title>Google</title>
<meta name="robots" content="noindex">
<meta http-equiv="refresh" content="1; url=http://google.com">
</head>
<body>
<form name="form1" id="form1" method="get" action="http://google.com"></form>
<script type="text/javascript">
document.form1.submit();
</script>
<div style="padding: 30px; text-align: center;">
You are being automatically redirected to Google.<br/><br/>
Page Stuck? <a href="http://google.com">Click Here</a>.
</div>
</body>
</html>
---
This is what referer.us uses, they won't send the visitor if it's not cloaked. But again you have to ask yourself if you really want to lose certain visitors. Their flash thing looks interesting.
If you use double-meta refresh you'll most likely lose alot of visitors because the cloaking will fail alot with that method. There are alot of browsers and many different versions of those browsers which all handle their referrers differently: Referer.us Browser & Platform Compatibility
As I mentioned on top, this code WILL not work if the next page is using meta refresh. I know few networks use meta refresh to redirect offers (which is stupid).
I have found using onload="javascript:" backed by meta refresh to be the best solution so far.
<script type="text/javascript">
function redirect(){
window.location = "URL_HERE";
}
</script>
<body onLoad="javascript:redirect();">
</body>
This way the page will redirect after it is being loaded so it will give out the code's page url as the referrer.