Redirect undetected

1

I would like my user to be redirected without it being detected.

Example: <a href="ola.php">oi</a> Ola.php takes the source, with the attribute $ _SERVER ['HTTP_REFERER'].

I would like my user to be redirected without being detected by http_referer, is it possible?

    
asked by anonymous 03.11.2018 / 02:29

1 answer

1

I found a way:

<a href="http://example.com" referrerpolicy="no-referrer">ReferrerPolicy Attribute</a>

Or modify the head of your html by adding the meta:

<meta name="referrer" content="no-referrer">

but there it would be for all links.

I found it on: link

Greetings,

    
03.11.2018 / 13:29