Blanking referer for Firefox using PHP
I have a code which should blank a referer:
开发者_Python百科header('Referer: ', true);
header('Location: http://example.com/');
However it shows it....
The referrer is set by the browser. You cannot control that on the server side. You would need to create a browser plugin to spoof the referrer.
精彩评论