Quote:
Originally Posted by JCK
<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
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
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!