Also posted this on nichechoppers There are a bunch of ways to do it, but you don't need to know them all so here are 3 good ways. PHP: <?php $url="http://google.com"; // enter the url here header("Location: $url"); ?> Code (markup): Javascript: (not recommended) <script type="text/javascript"> var url="http://google.com"; // enter url here window.location=url; </script> Code (markup): Html: <meta http-equiv="refresh" content="0;url=http://google.com/"/> Code (markup): And... if you don't have a website (why wouldn't you?!!) then just go to tinyurl.com
The php method is best. Theres also one using mod rewrite in htacess. You should add that to your post if you know of it.
i never used cloaking, to those who are using it.. is there any issues of cloaking your hop link? specially with cookie handling stuff.