とほほのsitemap入門

目次

サイトマップとは

下記のサイトで仕様が公開されています。

サイトマップファイル(TXT形式)

サンプル(TXT形式)

http://example.com/index.html
http://example.com/foo/baa.html
http://example.com/foo/baz.html

注意事項(TXT形式)

サイトマップファイル(XML形式)

サンプル(XML形式)

通常のサイトマップファイル:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>http://www.example.com/</loc>
    <lastmod>2026-02-08T09:45:32+09:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

複数のサイトマップファイルを配置する場合:

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://example.com/sitemap1.xml</loc>
    <lastmod>2026-10-01T18:23:17+09:00</lastmod>
  </sitemap>
  <sitemap>
    <loc>https://example.com/sitemap2.xml</loc>
    <lastmod>2026-10-01T18:23:21+09:00</lastmod>
  </sitemap>
</sitemapindex>

注意事項(XML形式)

<urlset>

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>http://www.example.com/</loc>
    <lastmod>2026-02-08T09:45:32+09:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

<url>

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>http://www.example.com/</loc>
    <lastmod>2026-02-08T09:45:32+09:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

<loc>

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>http://www.example.com/</loc>
    <lastmod>2026-02-08T09:45:32+09:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

<lastmod>

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>http://www.example.com/</loc>
    <lastmod>2026-02-08T09:45:32+09:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>
2026
2026-02
2026-02-08
2026-02-08T09:45+09:00
2026-02-08T09:45:32+09:00
2026-02-08T09:45:32.123+09:00
2026-02-08T09:45:32.123Z

<changefreq>

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>http://www.example.com/</loc>
    <lastmod>2026-02-08T09:45:32+09:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

<priority>

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>http://www.example.com/</loc>
    <lastmod>2026-02-08T09:45:32+09:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

<sitemapindex>

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://example.com/sitemap1.xml</loc>
    <lastmod>2026-10-01T18:23:17+09:00</lastmod>
  </sitemap>
  <sitemap>
    <loc>https://example.com/sitemap2.xml</loc>
    <lastmod>2026-10-01T18:23:21+09:00</lastmod>
  </sitemap>
</sitemapindex>

<sitemap>

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://example.com/sitemap1.xml</loc>
    <lastmod>2026-10-01T18:23:17+09:00</lastmod>
  </sitemap>
  <sitemap>
    <loc>https://example.com/sitemap2.xml</loc>
    <lastmod>2026-10-01T18:23:21+09:00</lastmod>
  </sitemap>
</sitemapindex>

サイトマップの登録

robots.txt への登録

robots.txt に登録しておくことで、次回クロールの際に読み込んでもらいます。

Sitemap: https://example.com/sitemap.txt
Sitemap: https://example.com/sitemap.xml

サーチエンジンへの直接登録

いくつかのサーチエンジンでは下記の URL を呼び出すことで直接登録することができます。