Defect #7582
closedhiding form pages from search engines
0%
Description
Form pages like /issues/new are not worth to be indexed by search engines. And moreover it is sometimes confusing for visitors from search engine. When you have a question about redmine and you search about it, what can you do if /issues/new appears?
It happens when these form pages are opened for anonymous user. It actually happened at redmine.ruby-lang.org once. So I wrote the attached patch. This patch adds a meta element as follows in some pages:
<meta name="ROBOTS" content="NOINDEX,FOLLOW,NOARCHIVE" />
Files
Related issues
Updated by Jean-Baptiste Barth almost 14 years ago
- Status changed from New to 7
- Assignee set to Jean-Baptiste Barth
- Affected version (unused) set to 1.1.1
- Affected version set to 1.1.1
Makes sense to me. I saw some people use it uppercase, other lowercase. Do you know if there is any difference ? (I don't care about standards here, but some exotic search engines may have bots with exotic implementations..)
Updated by Jean-Philippe Lang over 13 years ago
- Status changed from 7 to Closed
- Resolution set to Fixed
Patch committed in r5443. It was lowercase'd for consistency with other head tags.