Sitemaps Generator includes noindex pages
« on: March 05, 2018, 07:03:52 AM »
Hello,

The standalone sitemap generator includes some pages which are set to "noindex, follow" into the sitemap. Not all of them, only a few. But this causes errors in Google's Webmaster Tools.

How can this be fixed?

Thank you!

Ricardo


Re: Sitemaps Generator includes noindex pages
« Reply #2 on: March 15, 2019, 03:38:23 AM »
One explanation for this: if you haven't quoted the tag name attribute, the tag is not recognized. ie:
<meta name=robots content="noindex,follow">
is no good. Make sure it is
<meta name="robots" content="noindex,follow">
or
<meta name='robots' content="noindex,follow">