One of the hot topics of the last week in SEO was news that the confidential Google Quality Ratings Guidelines were re-written a short while back.
For those that don’t know, Google uses thousands of individuals (humans) to rate sites for quality, and the new guide helps those people rating sites with what makes a quality site.
One of the examples given was for;
http://wiki.answers.com/Q/Where_water_is_plentiful_soil_is_often_what&isLookUp=1#Q=where%20water%20is%20plentiful%20soil%20is%20often%20what
"This is a page from a Q&A site with an unanswered question. Q&A pages exist to answer user questions. Pages with unanswered questions should generally be rated Low because they have little MC (just a question and no answer) and don’t achieve their purpose well. Misleading or potentially deceptive design makes it hard to tell that there’s no answer, making this page a poor user experience. In addition to having no answer, this page has Ads and links to other questions (misleadingly labeled as “Relevant answers”) displayed prominently, which users may mistake for answers to the question. It takes a moment to notice that this page actually has no answer"
I suggest that for the purposes of SEO, questions with no answers should receive a meta robots noindex directive, until an answer is given.
No answer;
<meta name="robots" content="noindex, follow" />
</head>
With answer;
(no meta robots directive (which means index,follow).
</head>
*I've implemented a noindex on tag pages now* this was done using;
---
header('X-Robots-Tag: noindex,follow');
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
header('Location: ../');
exit;
}
within the qa-page-tag.php file.
Does anyone know how to add this to pages with a question and no answer, but, remove it when the question does get an answer?