XML Sitemap Generator
Paste one URL per line and copy the generated sitemap.xml. Everything is built locally, so no crawler visits your site.
3 URLs
sitemap.xml
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://example.com/</loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://example.com/about</loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://example.com/contact</loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
About this tool
A sitemap lists the URLs you want indexed together with optional hints. It does not guarantee indexing, but it helps search engines discover pages that are poorly linked internally — new sections, filtered listings, deep archives.
Google reads lastmod and largely ignores changefreq and priority, so leaving those out is fine; Bing and smaller engines still read them. A single file holds up to 50,000 URLs or 50 MB uncompressed; beyond that, split it and reference the parts from a sitemap index.
Frequently asked questions
- Why is there no crawler here?
- The tool runs in your browser, and browsers cannot fetch other sites' pages because of CORS. Paste the URL list from your CMS or an export instead.
- What lastmod value should I use?
- The date the content actually changed. A date that updates on every deploy makes the field worthless to search engines.
- How do I submit the sitemap?
- Upload it to your web root, add a Sitemap: line to robots.txt, then submit the URL in Google Search Console and Bing Webmaster Tools.