Hello,
Please correct me, if I am wrong.
If a web site does NOT want to pass referrer for both internal and external links, I see 3 possibles methods :
1- Set the Server Header :
Referrer-Policy: no-referrer
All links, internal/external will not pass referrer.
2- Set the meta tag :
<meta name="referrer" content="no-referrer">
Same effect as above.
3- Tag each individual link, with the attribute:
rel=”noopener noreferrer”
Am I right?
Thank you.