Forum Moderators: open
Could this:
<meta name="robots" content="noodp">
<meta name="robots" content="noarchive">
Be shortened to this?
<meta name="robots" content="noodp,noarchive">
"noindex,follow" within the the robots meta tag, the problem is unlikely to come from that source. The problem is how the other search engines would handle the
noodp value. As this is not a usual value for the robots meta, it will potentially be parsed as an error. Most likely it will simply have no effect, but as the value is "no[i]something[/i]", there is a (minuscule) chance that a bot may decide to read it as noindex to be on the safe site. That would be disastrous. ;) The second problem is that if you use two separate meta robots tags, will that be parsed as one adding to the other, or the second replacing the first?
So in all, I would suggest two elements, one for robots and one specifically for MSN (as they are the only ones supporting
noodp anyway: <meta name="msnbot" content="noodp">
<meta name="robots" content="noarchive"> All this, of course, is to be absolutely safe - it is extremely likely that:
<meta name="robots" content="noarchive,noodp"> would work perfectly.