|
Stripping HTTP Referer from outbound link
Hi,
Hopefully someone here can help with this.
I have a CRM package that I want to go to a belt, braces and stapled to the legs environment. (Directory password, logon password & no referer junk)
One of the components is a "Company Listing" that has the offending website URL.
The URL is drawn from a MySQL db and presented as
[code:1:811405ddfb]noreferer.php?&url=http://www.someurl.com[/code:1:811405ddfb]
noreferer.php =
[code:1:811405ddfb]$url = (isset($_GET["url"])) ? $_GET["url"] : (isset($_POST["url"]) ? $_POST["url"] : "");
Header("Location: ".$url);[/code:1:811405ddfb]
This opens the offending page in a target="_blank" environment.
However, checking the logs of the offending site, the http-referer is not stripped from the logs.
Is there a simple way to remove the referer from an outbound link. (I'd prefer to keep my url out of log files and latest referer scripts.)
I've tried[code:1:811405ddfb]Header("Referer: http://junk.com);[/code:1:811405ddfb] amongst several others, all to no avail.
All help greatly appreciated.
Cheers
|