I've got a pdf that I'd like to protect and don't want search engines to index it.
Currently, my link is as follows:
<a href="https://example.com/mypdf.pdf" target="_blank" rel="noopener">View PDF</a>
Would I be able to add nofollow
tag to the rel
tag?
Would I then divide these two with a coma or no coma?
Currently trying rel=nofollow noopener
without coma.
Would I be able to add noindex
to the same tag?
<a href="https://example.com/mypdf.pdf" target="_blank" rel="nofollow noindex noopener">View PDF</a>
Would this work?