Is it possible to make a redirection so the logs of the person that receive the traffic shows me as the referrer and not the site that linked to my redirection? I have people from www.sites_that_send_me_traffic.com
(that I don't control) that are sending me trafic to www.mysite.com. On www.mysite.com I redirect the traffic to another site that is not mine www.the_site_that_receive_the_trafic.com. The problem is that on the logs of the site that receive the traffic, the referer is www.sites_that_send_me_traffic.com and not www.mysite.com. I want that my domain shows on the referer field of their logs. I am now using a PHP header redirection on my site:
<?php
header('Location:[url]http://www.the_site_that_receive_the_trafic.com[/url]');
php?>
I am open to any other solution. I you think its easier to achieve my goal with another language just tell me