サイトマップのファイルを分割して置いておく

2011年5月13日

サイトマップのファイルを分割して置いておく場合

#sitemap.xml

<sitemapindex>
  <sitemap>
    <loc>https://gendosu.jp/sitemap1.xml</loc>
    <lastmod>2011-04-21T17:21:42+09:00</lastmod>
  </sitemap>
  <sitemap>
    <loc>https://gendosu.jp/sitemap2.xml</loc>
    <lastmod>2011-04-21T17:21:42+09:00</lastmod>
  </sitemap>
</sitemapindex>

と書いて、sitemap1.xmlファイルの中に実際の一覧を書き込む

#sitemap1.xml

<urlset>
  <url>
    <loc>http://beauty.hotpepper.jp/station1/</loc>
    <lastmod>2011-04-21T17:16:45+09:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>http://beauty.hotpepper.jp/station1/stc0080045/</loc>
    <lastmod>2011-04-21T17:16:45+09:00</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.9</priority>
  </url>
</urlset>

とする