Build a valid XML sitemap
Paste your page URLs and get a clean, valid sitemap.xml following the sitemaps.org 0.9 schema. An XML sitemap helps search engines discover every page on your site and crawl it efficiently.
What it generates
<?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-06-30</lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
…
</urlset>
Only lines that start with http:// or https:// are included, and special
characters in URLs are XML-escaped, so the output is always valid.
The optional fields
| Field | Meaning | Notes |
|---|---|---|
lastmod | Date the page last changed | Defaults to today; can be omitted |
changefreq | How often the page changes | A soft hint (daily, weekly, …) |
priority | Relative importance, 0.0–1.0 | A soft hint, not an absolute ranking |
Search engines treat changefreq and priority as gentle hints, so set or omit
them as you prefer.
Publishing your sitemap
- Download
sitemap.xmland upload it to your site root. - Add a
Sitemap: https://example.com/sitemap.xmlline to yourrobots.txt. - Submit the sitemap URL in Google Search Console and Bing Webmaster Tools.
For very large sites (over 50,000 URLs) split into multiple sitemaps and reference them from a sitemap index.
Everything runs in your browser — your URL list is never uploaded.