I need to do a Javascript based redirect
window.location.href = 'URL';
But I need to remove the referrer from the HTTP headers upon redirection (the target page should see no referrer), how can I do that?
<a href="redirecturl" rel="noreferrer" id="autoclick">Link</a>
<script>document.getElementById('autoclick').click();</script>