Remove http referer

As of 2015 this is how you prevent sending the Referer header: Just add this to the head section of the web page: <meta name=”referrer” content=”no-referrer” /> This works both for links and for Ajax requests made by JavaScript code on the page. Other valid meta options include: <meta name=”referrer” content=”unsafe-url” /> <meta name=”referrer” content=”origin” … Read more