Sitemap XML Generator

Generate sitemap.xml files or sitemap indexes from clean URL lists without leaving the browser.

Output mode
Choose between a standard urlset and a sitemap index.

Used when you want to join relative paths into full URLs.

Turn this off when every row already contains an absolute URL.

Start from a sensible example, then tune the entries.

URL entries
Each row becomes one <url> record in sitemap.xml.

Page 1

Page 2

Page 3

Generated XML
3 URL entries included
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://example.com/</loc>
    <lastmod>2026-04-20</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://example.com/about</loc>
    <lastmod>2026-04-14</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>
  <url>
    <loc>https://example.com/pricing</loc>
    <lastmod>2026-04-18</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

Why this tool is useful

Search engines do not need a massive sitemap system to understand most sites. They need a valid XML document with stable URLs, sensible update hints, and no accidental formatting mistakes. This tool focuses on that core job.

What it covers

  • Build a standard urlset sitemap for pages on one site.
  • Build a sitemapindex document when you already split large sites into multiple sitemap files.
  • Work with either absolute URLs or clean relative paths joined against one base URL.

What to watch for

  • Sitemap locations should resolve to final canonical URLs, not temporary redirects.
  • lastmod, changefreq, and priority are hints, not guarantees about crawling behavior.
  • If every row is already a full URL, turn off automatic base URL joining and keep the XML explicit.