Sitemap Generator

Generate a basic sitemap.xml structure from user URLs.

Result
<?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-03-14</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://example.com/about</loc>
    <lastmod>2026-03-14</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://example.com/contact</loc>
    <lastmod>2026-03-14</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

Related tools

How it works

  1. 1Paste URLs (one per line) into the input area.
  2. 2Optionally add base URL and lastmod dates.
  3. 3The tool generates a valid sitemap.xml structure.
  4. 4Copy and upload to your site root.

Example

Example: Paste https://example.com/page1, https://example.com/page2. Get valid sitemap.xml with <url><loc>...</loc></url> entries.