View Single Post
Old 03-14-2011, 06:49 PM  
Jakez
Confirmed User
 
Jakez's Avatar
 
Industry Role:
Join Date: Jan 2004
Location: oddfuturewolfgangkillthemall!!!!!!!
Posts: 5,656
Quote:
Originally Posted by JCK View Post
<meta http-equiv="refresh" content="0;url=http://finalsite.com/" />
Tried this. In Firefox and IE the referrer is left blank on the final page, Chrome is the only one that actually shows a referrer and it shows it correctly as the redirect URL. In Firefox and Chrome the back button on 1 click goes to the original source, IE goes to the redirect page.

Quote:
Originally Posted by Danmixz View Post
PHP Code:
 
Or use double meta refresh
Nice, this code works. Tried a double meta refresh and it didn't work, might not have done it correctly though.

Quote:
Originally Posted by TheDoc View Post
Code:
<?php $url = urldecode($_REQUEST[url]);?>
<html><head></head><body onload='top.location="<?=$url;?>"></body></html>
WINNING! This works also and is 100x more simple to deal with.

Final code I'm going with for the redirect page:
PHP Code:
<?php $url "http://www.finalsite.com"?>
<html><head></head><body onload='top.location="<?=$url;?>"></body></html>
Shows the redirect as the referrer in all browsers. Thanks everyone!
__________________
[email protected] - jakezdumb - 573689400

Killuminati

Last edited by Jakez; 03-14-2011 at 06:50 PM..
Jakez is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote