Hi all, I know how to do simple redirects, but what I'm struggling with is how to do a cloaked redirect. For example, if I would like to drive traffic to http://offer.domain.com & have it redirect to my affiliate url, but still show http://offer.domain.com How can I accomplish this? Thank you in advance. Chris
what redirect script are you using? in php? in asp? in js? check one redirect script here http://www.crivionweb.com/phpblog/php-tutorial-function-to-refresh-a-page/
you can use frame for this. try this: <html> <frameset rows="100%"> <frame src="http://www.youraffiliatesite.com/blablabla......."> </frameset> </html>
You can do this with using meta refresh tag. Create index.html in your root folder of subdomain. html><body> <meta http-equiv="refresh" content="0; url=http://myhiddenaffiliate.com/click.aspx?zoneid=49729"> </body></html> Code (markup): This should work.