Forum Moderators: open
For example, I have a webpage that has the synopsis of a technical paper on it (this is HTML). On this page is a link to the full PDF. Is it possible to put something into the link to the PDF to stop it being spidered, e.g.
nofollow:http://wwwipaper17.pdf
or do I actually have to write something into the HTML itself?
Thanks
Martin
P.S. No programming knowledge at all
Are you saying I just type that text string in there, or would I have to type that directly into the HTML code?
Sorry, IT is not my strong point.
Thanks
<a href="http://wwwipaper17.pdf" rel="nofollow">No idea if other search engines have adopted that.
Nooooooooooooooooooooooooooo -- nofollow only means the link won't get weight, it does not mean it won't be followed - there is no obligation taken by search engine not to follow the link: this value is meant to be used for ranking purposes.
<a href="ftp://wwwipaper17.pdf">
ie type "ftp" where you would normally type "http" in the link. Search engine bots will not follow an ftp link, since ftp is not, technically speaking, a web protocol (so don't use it for web pages, only things like pdf files and the like, that should be downloaded rather than viewed).
However, using ftp will not do you much good unless you find out where the server you use expects to find ftp files. This can vary from host to host. One that I use allows me to put them in the same directories as my http files, while another demands I put them in a different place. Yours may do either of these, so you'll have to find out. Just ask technical support where to put an ftp file. You will not get a rude answer.
One downside if you do this is that you will not get numbers of times the paper is downloaded in your logs, since logs only record web activity (ie http and https).