how do I spoof a referrer ?
originalsite.com has
header("Location: http://www.example.org");
I tried putting header("Location: http://www.destination.com"); in example.org
but checking the referer at destination.com, it shows originalsite.com as referer not example.org !
To elaborate on cHao’s method:
example.com has a file on the server called bounce.php which has the following code:
This is an example on usage on otherdomain.com
That should ensure the “bounce”. But just know that if the user has the referrer turned off or set to something they wanted custom, this will not work for that situation.
The safe_list is to help prevent someone from using that page for their own purposes, basically only sites you say can be bounced to are allowed.
Update
Hopefully that is what you are looking for and I did not mis-interpret it.