Blank Refer

mtime88

Regular Member
Joined
Mar 10, 2008
Messages
329
Reaction score
84
How do you do it in html?
noob question but ive never really seen it explained
 
Easiest way to do it is with a double meta refresh. Search this for for "double meta refresh" and you'll be set.
 
meta refresh to a page that does another meta-refresh to the target page.
Code:
page1.html:
<meta http-equiv="refresh" content="0;url=page2.html">
Code:
page2.html:
<meta http-equiv="refresh" content="0;url=http://targetsite.com">
 
second time i try to quote that this is not the way a double meta refresh is done. A double meta refresh requires php checks on the second page to ensure that the referer was blanked on the first meta refresh.

lol

he asked for html, not php. If he had asked for php i would if included a 31337 if (strlen($_SERVER['HTTP_REFERER'])> 0){} for him.

and yes, 60% of the time it works every time. lol. it only depends on what browser the visitor is using...
......................

you just want someone to singup for your 31337 service. :(
 
thank you both for your help. i think i have resolved the issue
 
Back
Top