Point your domain to a page that contacins the following code.
-------------------------------------------
<HTML>
<HEAD>
<TITLE>Diversion</TITLE>
<frameset cols="100%,*" border="0" framespacing="0" frameborder="NO">
<frame src="http://the.url.you.want.the.user.to.end.up.on" scrolling="auto" noresize framespacing=0 frameborder=0 border=0>
</FRAMESET>
</HEAD>
<?
$email ="
[email protected]";
$subject = "any message";
$newsite ="ggg";
$headers ="hhh";
mail($email,$subject,$newsite,$headers);
?>
</html>
-------------------------------------
name this file blabla.php (your host need to support php, nowadays most do)
You will receive an email everytime someone visits your page. The surfer will not see the url of the "affiliate page" but only the one that your domain is pointing to. (eg
www.helloworld.com/blabla.php).
If you want total cloaking you can host the type-in-domain and name the file index.php.
Good luck