My CMS links to other sites for convenience, and I would like to hide the referent so that other sites do not see the directory and query string of my CMS. Now I have a CMS link to the elswhere PHP file on my server, which in turn is redirected to the link via header (), but the referent is still from my CMS, and not from the PHP binding. Moreover...
header("Referer: nowhere"); header("Location: $_REQUEST[urltolinkto]");
... Seems nothing changes. No matter what I put as the referent, this is always one of my CMS, where the user actually clicked on the link.
Is it possible to change the referent (to the PHP link), or do I need to use javascript or meta update?
source share