概要
- xfreeの無料レンタルサーバで、Wordpressでサイトを構築。
- サーチコンソールに自動的にサイトマップを送信してくれるプラグインの「Google XML Sitemaps」を使用。
- Add Google Analytics TIDは設定済。
- 「HTML形式でのサイトマップを含める」のチエックを外している。
- google console searchでインデックスが登録できない趣旨のエラー
内容
- 「送信されたURLにnoindexタグが追加されています」のエラーが表示されます。
対処
/wp-content/plugins/google-sitemap-generatorの下のsitemap-core.phpを直接、以下のように修正します。
// Do not index the actual XML pages, only process them.
// This avoids that the XML sitemaps show up in the search results.
if ( ! headers_sent() ) {
header( 'X-Robots-Tag: noindex', true, 200 );
}
↓
// Do not index the actual XML pages, only process them.
// This avoids that the XML sitemaps show up in the search results.
if ( ! headers_sent() ) {
header( 'X-Robots-Tag: index', true, 200 );
}