PDA

View Full Version : redirecting hits from an url?


Dammy
03-13-2002, 09:54 AM
Can it be done with a javascript?<br />I want everyone that comes from <a href="http://www.somefucker.com" target="_blank">www.somefucker.com</a> redirected to <a href="http://www.mydomain.com/downloadthis10bucksperminutedialer-youfuckheads..." target="_blank">www.mydomain.com/downloadthis10bucksperminutedialer-youfuckheads...</a><br /><br />Thanks in advance <img border="0" title="" alt="[Smile]" src="smile.gif" />

PeepNTom
03-13-2002, 11:11 AM
search the forum, this has been discussed a few<br />times that I have seen <img border="0" title="" alt="[Wink]" src="wink.gif" />

Buzzman
03-13-2002, 11:18 AM
Add this tag:<br /> if (document.referrer.indexOf('http://www.') &gt; -1)location.href ='http://'; <br /><br />Just remember to add the open and closing script tags and remember to change the urls to whatever you want.<br /><br />Burtman