Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPBカップ
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

YoastのWordPress SEOサイトマップ404エラーを修正する方法

WordPressのYoast SEOサイトマップに404エラーが表示されると、イライラすることがあります。Yoast SEOは人気のあるツールですが、プラグインの競合や誤った設定がこのエラーを引き起こすことがあります。

そのため、XMLサイトマップにアクセスしようとしたときに404エラーが表示されると、足が止まってしまいます。でもご心配なく、簡単に修正できます。

WPBeginnerでは、100回とは言わないまでも、この問題に遭遇し、解決してきました。この投稿では、Yoast SEOのサイトマップ404エラーを解決する方法を順を追って説明します。サイトマップを再びスムーズに動作させるために、ぜひお付き合いください。

Fixing Yoast SEO XML sitemap 404 error in WordPress

WordPressのYoast SEO Sitemap 404エラーの原因は?

Yoast SEO サイトマップは、検索エンジンがあなたのサイト上のすべてのコンテンツを見つけ、インデックスさせるのに役立ちます。

エラーを修正することで、検索エンジンがサイトマップにアクセスし、サイト内のすべてのページとコンテンツを発見できるようになります。これにより、検索エンジンからの視認性と順位が向上し、サイトマップがない場合よりもコンテンツの順位が早く上がります

WordPressには、Google Search Consoleやその他の検索エンジンに送信できるXMLサイトマップが初期設定されています。

このXMLサイトマップは、ブラウザーのアドレスバーに以下のURLを入力することで閲覧できます:

https://example.com/sitemap.xml

しかし、この初期設定のWordPressが生成するサイトマップは非常に基本的なものです。これを解決するために、Yoast SEOやAll In One SEOプラグインのようなWordPressのトップSEOプラグインはすべて、より多くの機能を備えた独自のXMLサイトマップを作成します。

WordPress SEOプラグインが生成したXMLサイトマップを使用すると、プラグインはWordPress XMLサイトマップの初期設定のショートカットを書き換えます。

つまり、上記のサイトマップURLは、WordPress SEOプラグインによって生成されたサイトマップにユーザーを送ることになる。

残念ながら、プラグインの競合やWordPressの設定が正しくないために、サイトによっては404エラーが 発生することがあります。

以下のセクションでは、Yoast SEOプラグインでWordPressサイトマップの404エラーを簡単に修正する方法をご紹介します。ここで取り上げるすべての方法を簡単に説明します:

準備はいいかい?さっそく始めよう。

WordPressには、パーマリンクと呼ばれるSEOに適したURL構造が用意されています。このURL構造は、リダイレクトシステムを使用して、ユーザーがブラウザーにURLを入力したときにロードするページをウェブホスティングサーバーに伝えます。

通常、これらのパーマリンク設定は、サイトに変更を加えると自動的に更新されます。

悪いニュースは、WordPressがパーマリンク構造を更新できないことがあり、Yoast SEOのサイトマップ404エラーが表示されることがあるということです。

これは、 WordPress管理エリアから設定 ” パーマリンクの ページに行き、「変更を保存」ボタンをクリックするだけで簡単に修正できます。

Update permalinks

そうすることで、WordPressのパーマリンク設定が更新されます。これでXMLサイトマップのページにアクセスして、問題が解決したかどうかを確認できます。

それでも問題が解決しない場合は、このまま読み進めても構わない。

WordPressのパーマリンク構造をリフレッシュしても404エラーが直らない場合は、手動でユーザーをYoast SEOのサイトマップページにリダイレクトするようウェブサーバーに指示することができます。

そのためには、.htaccessファイルに以下のコードを追加する必要があります。

# Yoast SEO - XML Sitemap Rewrite Fix
RewriteEngine On
RewriteBase /
RewriteRule ^sitemap_index.xml$ /index.php?sitemap=1 [L]
RewriteRule ^locations.kml$ /index.php?sitemap=wpseo_local_kml [L]
RewriteRule ^geo_sitemap.xml$ /index.php?sitemap=geo [L]
RewriteRule ^([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 [L]
RewriteRule ^([a-z]+)?-?sitemap.xsl$ /index.php?yoast-sitemap-xsl=$1 [L]
# END Yoast SEO - XML Sitemap Rewrite Fix

注: WordPressサイトがサブディレクトリまたはフォルダー(例:https://example.com/mywebsite/ )にインストールされている場合は、以下のコードを使用する必要があります。

# Yoast SEO - XML Sitemap Rewrite Fix
RewriteEngine On
RewriteBase /mywebsite/
RewriteRule ^sitemap_index.xml$ /index.php?sitemap=1 [L]
RewriteRule ^locations.kml$ /index.php?sitemap=wpseo_local_kml [L]
RewriteRule ^geo_sitemap.xml$ /index.php?sitemap=geo [L]
RewriteRule ^([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 [L]
RewriteRule ^([a-z]+)?-?sitemap.xsl$ /index.php?yoast-sitemap-xsl=$1 [L]
# END Yoast SEO - XML Sitemap Rewrite Fix

mywebsite/をあなたのサブディレクトリ名に置き換えることを忘れないでください。

このコードは、ユーザーがYoast SEOのXMLサイトマップにアクセスした際に、どのページを表示させるかをウェブサーバーに伝えるだけです。

XMLサイトマップを表示し、問題を解決するかどうかを確認することができます。

3.XML Sitemapsプラグインに切り替える

上記の方法でYoast SEOのXMLサイトマップページの404エラーが解決されなかった場合は、XMLサイトマップを生成するプラグインを区切りとして使用してみてください。そして、これに適したプラグインがXML Sitemapsプラグインです。

この方法の欠点は、XMLサイトマップを生成するプラグインと、その他のSEO機能をYoast SEOに区切らなければならないことだ。

まず、XML Sitemapsプラグインをインストールして有効化する必要があります。詳しくは、WordPressプラグインのインストール方法のステップバイステップガイドをご覧ください。

Yoast SEOを使用しているため、XML SitemapsプラグインまたはYoast SEOのサイトマップ機能を無効化する通知が自動的に届きます。

Yoast SEO XML Sitemap conflict warning

そして、「Toggle Yoast SEO’s XML Sitemap」ボタンをクリックして次に進みます。

すると、SEO ” Generalの下にある’Features’タブが表示されます。ここから、「XMLサイトマップ」オプションまでスクロールダウンし、設定をオフにする必要があります。

Disabling XML sitemaps in Yoast SEO

変更を保存」ボタンをクリックして、設定を保存することを忘れないでください。

これでSettings ” XML-Sitemapページに切り替えてサイトマップを設定することができます。ほとんどのサイトでは初期設定で問題ありません。

XML Sitemaps settings

しかし、あなたのニーズに応じていつでも設定を変更することができる。

これで、XMLサイトマップのURLをGoogleサーチコンソールやその他の検索エンジンに送信できるようになりました。

Sitemap URL

4.All In One SEO for WordPressに切り替える

上記の方法がすべてうまくいかず、XMLサイトマップを生成するプラグインを区切りたくない場合は、この方法でサイトマップ404エラーの問題を解決できるかもしれません。

この方法には、All In One SEO for WordPressが必要だ。これは市場で最高のWordPress SEOプラグインであり、Yoast SEOの代替となるものだ。

詳細な違いについては、YoastとAll In One SEOの比較をご覧ください。

All-in-One SEO (AIOSEO)は、高度なXMLサイトマップと管理しやすいオプションを備えており、XMLサイトマップに含めるもの、除外するものを完全にコントロールすることができます。

まず、All In One SEO for WordPressプラグインをインストールして有効化しましょう。詳しくは、WordPressプラグインのインストール方法のステップバイステップガイドをご覧ください。

注: All In One SEOfor WordPressには無料版もあり、動画とニュースを除くほとんどのXMLサイトマップ機能が含まれています。

プラグインを有効化すると、セットアップウィザードが表示されます。セットアップ中にヘルプが必要な場合は、WordPress用All In One SEOプラグインを正しくセットアップする方法についてのガイドに従ってください。

All in One SEO setup

All In One SEOでは、Yoast SEOからSEOデータをインポートすることもできます。

これにより、以前のSEOメタ情報とタイトルがすべて変更されないようになります。

Import Yoast SEO data

初期設定後、All In One SEO ” SitemapsページでXMLサイトマップの設定を行うことができます。

サイトマップを開く」ボタンをクリックして、WordPressのサイトマップ404エラーが修正されたかどうかを確認できます。

All in One SEO sitemaps settings

その後、必要に応じてサイトマップの設定を行う。

例えば、All In One SEOでは、サイトマップに含めるものを選択することができます。投稿タイプ、タクソノミー、個々の投稿、ページを追加または削除することができます。

All in One SEO sitemaps advanced settings

All In One SEOでは、動画、ニュース、RSSサイトマップHTMLサイトマップも作成できます。

より多くの設定を行いたい場合は、タブを探せばいい。

Additional sitemaps settings

これらのサイトマップは、Google Search Consoleやその他の検索エンジンにも送信することができます。これは、検索エンジンがあなたのサイトの新しいコンテンツを素早く見つけるのに役立ちます。

専門家のアドバイス WordPressのエラーを自分で直したくないですか?ご心配なく!イライラするエラーとはおさらばして、好きなことに集中しましょう。WordPressの緊急サポートを今すぐご予約ください!

この投稿がWordPressのYoast SEO Sitemap 404エラーの解決にお役に立てば幸いです。次に、WordPressトラブルシューティングの完全ガイド、またはWordPressの一般的なエラーの修正方法もご覧ください。

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

情報開示 私たちのコンテンツは読者支援型です。これは、あなたが私たちのリンクの一部をクリックした場合、私たちはコミッションを得ることができることを意味します。 WPBeginnerの資金源 をご覧ください。3$編集プロセスをご覧ください。

アバター

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

究極のWordPressツールキット

ツールキットへの無料アクセス - すべてのプロフェッショナルが持つべきWordPress関連製品とリソースのコレクション!

Reader Interactions

242件のコメント返信を残す

  1. Reyhan Emilia

    Thank you because yoast had brought me to an impossible point. I will always read your blogs. You are perfect.

    • WPBeginner Support

      You’re welcome, glad we could help!

      管理者

  2. Scott Baranek

    Thank you so much for this article!!! I have been speaking with multiple people and support teams and I always knew it was something easy. Article was broken down for easy understanding as well. Thank you!!!

  3. Mark the martian

    Thanks so much for explaining. Was pulling my hair out over this.

    • WPBeginner Support

      Glad our guide was helpful :)

      管理者

  4. ahmed

    try to delete caches after first solution and it will work

    • WPBeginner Support

      Thanks for sharing your recommendation :)

      管理者

  5. Deepak kumar

    Due to this tutorial. My issue fix thankyou so much………..

    • WPBeginner Support

      You’re welcome, glad our guide could be helpful :)

      管理者

  6. Adam

    I was getting the same 404 error and the first solution solved the issue for me.
    Many thanks!

    • WPBeginner Support

      You’re welcome, glad our guide was helpful :)

      管理者

  7. Binod Raj Joshi

    Hey, wpbeginner, I was in sitemap trouble from a few days, now it have been solved. Learning a lot from you guys about wp error fixing, thanks!

    • WPBeginner Support

      You’re welcome, glad our guide could help :)

      管理者

  8. saurab

    Hi
    After moving to https from http, Sitemap address is displaying 404 error, Is it possible know the solution for this ?

  9. Ashish Sharma

    Nice pluging , but when I am creating sitmap using yoast and submitting it to webmaster it is showing 404 error for multiple urls. I searched in my site no where those urls exist. But y these are coming into sitemap I don’t understand any expert to help me

  10. RAJEEV KUMAR

    Sir, In my WordPress blog, 410 Response code error are showing in Yoast SEO’S Search Console feature. How I fix It.

  11. seerity

    Thanks, this fixed mine.

  12. Tracy Pope

    I tried to download the Yoast SEO plug in and I received this error message:

    Fatal error: Call to undefined function apply_filters_deprecated() in /websites/websitename/wp-content/plugins/wordpress-seo/admin/menu/class-admin-menu.php on line 246

    I now can’t get into my back end of the website at all I just keep getting this error? What can I do??

    • WPBeginner Support

      Hi Tracy,

      You need to connect to your website using FTP or File Manager app in your cPanel account. Go to wp-content/plugins/ and delete wordpress-seo folder. After that you will be able to login to your WordPress admin area and reinstall the plugin.

      管理者

  13. Amit

    Hi,

    To edit the .htaccess file do we need to remove the existing code and add your code

    or

    keep the existing code and add your code also?

    Need help.

  14. Keitai

    hmm,

    Tried every suggestion but still got a 404. somehow i can’t redirect xml html htm php file extensions.

    when i try
    RewriteRule ^sitemap_index.xl$ /site/index.php?sitemap=1 [L] and not
    RewriteRule ^sitemap_index.xml$ /site/index.php?sitemap=1 [L]

    Hence, i removed the “m”, and the redirect works but sitemap_index.xml doesn’t

    Any more tips?

  15. Carol

    I did the first option and now I have an internal server error!

  16. Tony

    Thanks for listening. I got the solution cheers

  17. Tony

    @wpbeginner support. I have already gotten the sitemap, the issue when I submit it to google for test it bring out an error http 404. I have read your post on how to edit .ht access file and wp seo. I have also check and unchecked the yoast plugin. But it hasn’t resolved the http 404. Please help

  18. Tony

    i just opened a new Wordpress site. I have tried everything still the site app generated by yoast seo is still showing http 404 error. What do I do. The website is . please note I have edited my .htaccess file, edited wp-content/Wordpress. Pap, unchecked and checked site map settings for seo, saved permalinks. I even used a free sitemap generator upload the file via my Cpanel but still am getting the same error

  19. nageswarao

    hi bro my website Google XML Sitemaps not showing last 5 months (sitemap-pt-post-2016-06.xml end after not showing) and also sitemap-tax-post_tag.xml not showing how to solve my problem

  20. Brandon Still

    This worked for me, thank you!!!

  21. Nik

    Thanks! I was having the hardest time getting it to work and the first section with the .htaccess code did the trick!

  22. Andy Johnston

    Worked for me. Thank you!

  23. Kunal Sarkar

    Hi all,

    I was facing the same problem while I came across this blog post. But I guess I found a better solution for non-tech guys.

    You can simply install JetPack from Wordpress and Activate its Sitemap functionality and disable the Sitemap of Yoast. Additionally Jetpack has a lot of essential features that I guess every WP admin should have.

    Thanks,
    Kunal Sarkar

  24. Shivam

    For me there is a different issue. Its just showing plain text instead of links. Can some one help please

  25. Naman Kumar

    Hey, I’m using the same code goy fixing yoast xml sitemap but what to do for google analytics by yoast?

  26. Mohammed Jhosawa

    Hi Guys,

    Please follow this steps if you are facing 404 error issue with Yoast XML Sitemap :

    1. Go to > Yoast SEO Plugin.
    2. Yoast SEO Plugin > XML Sitemap.
    3. Uncheck the user XML Sitemap functionality > Save Changes.
    4. Again Check XML Sitemap functionality > Save Changes.
    5. Click on XML Sitemap and you’ll see your sitemap_index.xml right there.

    Hope this information is useful to you.

    Thanks.

    • Alx Diesel

      @Mohammed Your suggestion worked. Thanks a lot.

    • Amar

      Thnks bro this worked for me.

    • Mr. Dif

      This worked for me also although I did implement the .htacess change as well.

    • Mohammed

      Your idea was good and thanks a lot

    • Faisal Sofi

      It worked… Thanks

  27. Felix

    Yo here is an easy way to fix it and should work fine for all!

    Go to settings in wordpress

    Select permalinks

    Don’t change anything

    Just Press save changes at the bottom of the page

    Now click on your XML Site Map button again in Yoast

    404 error should no longer show

    You welcome homies

    • Pankaj

      Yah This is fixed! Thanks a lot!

    • Christian

      thanks man, this worked.

    • Grant

      Reply to say that this method worked for me. Just go to permalinks page in settings, and click save.

    • Raf

      Awesome!! It worked.

    • Sergey

      Thanx! fixed for me

  28. Deborah

    Thank you so much! Worked like a charm to reduce the number from 1000 to 100.

  29. Tim

    Simply untick “Check this box to enable XML sitemap functionality.” in the SEO plug-in and Save Changes, then renable again. Problem solved.

  30. Arshad

    Thanks Joshua
    Had the same problem. Changing the rows from 1000 to 100 will fixed it for me.

    • Klick

      Thx i have change it too from 1000 to 100 now it work Thanx

    • Ridfay

      Now work with this tips thanx

  31. Miro

    After adding the first code to your htacces file disable sitemap functionality flush your cache (if you use any of caching tools like w3 total cache) and then enable the functionality again.
    It worked for me that way.

    Thank you for the tutorial! It helped!

  32. aaron

    I seem to be getting this for my posts. I suspect yoast is deleting my .htaccess file.

  33. Jeremy Vandermeer

    Unchecking and rechecking the XML SItemap option also worked for me. Thanks!

  34. Joe

    Hey guys. I fixed it! I turned this sitemap option off in this flawless plugin and used a different plugin. It was that easy. It was probably my crummy theme though. Probably.

  35. Atanas Tanev

    Ok guys. I was struggling with this issus for a day or so and finally I found the solution!

    Skip the mentioned plugins and the codes which may harm your website. I’ve tried everything!

    Simply uncheck the “remove strip” from yoast plugin and instead of this option just download and install the plugin: “Remove Category URL” from wordpress plugin section.

    The plugin supports WPML and sitemaps and the 404 error is fixed!

    Now you can buy me a beer for saving all your headaches!

    Cheers!

    Atanas Tanev

    • Nirav Dave

      Hey ATANAS!

      No way man! This solution worked for me mate. Thank you so much for sharing this.

      Nirav

  36. Bas

    i placed the code in my .htaccess file and saved it. Now every page gives a 500 internal server Error!!!
    What can i do?

    • Jay

      Same with me!!!? Have you managed to fix this?

    • Miles O'Brien

      What I did was I went to the xml sitemap page under the SEO plugin and under user sitemap I unchecked disable user sitemap. then when I put in the sitemap into webmasters it worked successfully. I can’t help you with your 500 internal error, But if you do this fresh it should work instead of using the code.

    • Rafael

      BAS: Remove the code you entered into your.htaccess file, resave it to the server and reload the website.

  37. Henry

    If anyone is using iThemes security plug in and has set it to guard the .htaccess file, disable it and create your sitemap, then re-enable.

  38. Rami Alloush

    Uncheck then re-check indeed solved that for me.
    Thanks

    • Chris

      LOL This worked for me too. I looked at 25 pages before I saw your comment.

  39. Nikos Kavvadas

    I add the code in the .htaccess and then i uncheck the sitemap option in the Yoast’s SEO plugin and save their settings. After that i re-checking the sitemap’s option and the the error is solved!

    Thanks!

  40. Henk Valk

    Thanks Joshua
    Had the same problem. Changing the rows from 1000 to 100 will fixed it for me.

  41. Morteza

    Thanks a lot, but not works for me. I do all of these ways and check/save/uncheck/save/XML Sitemap process after one & both of them… but ERROR 404!
    I’ll try another plugins for this.
    thanks for your great site..

  42. TimValDen

    Worked for me too… I had the 404page problem when loading the sitemap generated by Yoast SEO.

  43. Joshua Largent

    This is what worked for me – Go to the yoast XML sitemap on your dashboard. Change the Max Entries per sitemap from 1000 to 100. Worked like a charm for me. :)

    • Tony

      Easy does it again, change from 1000 to 100 did the job, without changing the code. Thank You!

  44. onarto

    It looks like htaccess edition disappear since yesterday… nothing in the menu anymore…

  45. Adrienne McCue

    Just checking and unchecking takes care of the issue. I will check this plugin out now! I did so much seo before, but I like so many features here!

  46. David Bell

    I found the same thing as Jane below. Thank you!

  47. smaug

    adding the following code to my .htaccess fixed the sitemap for me:

    https://gist.github.com/jdevalk/5345872

    (note this code is for if your wordpress installation is in a subdirectory named wordpress, if your is in a different folder, change the directory name in the code)

  48. Awais

    i have photography website . Should i uncheck the exclude media option or it’s ok?

返信を残す

コメントありがとうございます。すべてのコメントは私たちのコメントポリシーに従ってモデレートされ、あなたのメールアドレスが公開されることはありませんのでご留意ください。名前欄にキーワードを使用しないでください。個人的で有意義な会話をしましょう。