[Web制作] サイトマップ(sitemap.xml)のテンプレート
静的ページ用テンプレート
URLと日付を変更してお使いください。
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>https://example.com/hoge</loc>
<priority>1.00</priority>
<lastmod>2024-01-01T00:00:00+00:00</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://example.com/hoge/?p=info</loc>
<priority>1.00</priority>
<lastmod>2024-01-01T00:00:00+00:00</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://example.com/hoge/?p=contents</loc>
<priority>1.00</priority>
<lastmod>2024-01-01T00:00:00+00:00</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://example.com/hoge/?p=contact</loc>
<priority>1.00</priority>
<lastmod>2024-01-01T00:00:00+00:00</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>