What is Noreferrer?
“Noreferrer” refers to the rel="noreferrer"
HTML attribute used in links. It prevents the browser from sending referrer information to the destination when a link is clicked. It also implicitly includes rel="noopener"
, which prevents the target page from controlling the linking page.
HTML Example:
<a href="https://example.com" rel="noreferrer" target="_blank">Visit Example.com</a>
Why is Noreferrer Important?
Using rel="noreferrer"
adds an extra layer of privacy and security. It ensures that the destination site will not receive any referrer data, protecting users’ browsing history and preventing potential security risks.
Does Noreferrer Impact SEO?
rel="noreferrer"
does not affect SEO. Links with this attribute are crawlable and pass link juice. The attribute is primarily used for privacy and security purposes, not SEO.