anyone know how to do this? like..if my domain was A.com if you TYPE OUT A.com in your browser, it would redirect to A2.com now if it was a link on a website and you CLICKED IT, it would go to A3.com figured it must be some kind of coding/cloaking?
you can check to see if there is a referrer Code: <?php if(empty($_SERVER['HTTP_REFERER'])) { //user typed in URL } else { //user clicked a link } ?> Not 100% accurate but should do the job just fine.