Generate a sitemap.xml from a list of URLs.
Tip: use samples, upload, copy, download, and send-to actions inside the workspace where available.
Sitemap Generator is a free, browser-based tool that helps you produce ready-to-use output in seconds. Generate a sitemap.xml from a list of URLs. It's built for speed and privacy: Everything runs locally in your browser — your data is never uploaded to a server. No sign-up, no installs, and no daily limits.
Generate a sample or helper artifact, then copy it into the workflow that needs it.
Review the preview, copy or download the result, and keep everything local in your browser.
Canonical Tag Generator: Generate a rel=canonical link tag to avoid duplicate content.
Open toolDepth heuristic: root = 1.0, one segment = 0.8, two = 0.6, deeper = 0.4. Google ignores priority entirely; Bing and several crawlers still read it, so it is emitted but harmless.
| URL | lastmod | changefreq | priority |
|---|---|---|---|
| https://example.com/ | |||
| https://example.com/about | |||
| https://example.com/blog | |||
| https://example.com/blog/getting-started | |||
| https://example.com/contact |
<?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>1.0</priority>
</url>
<url>
<loc>https://example.com/about</loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://example.com/blog</loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://example.com/blog/getting-started</loc>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
</url>
<url>
<loc>https://example.com/contact</loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
User-agent: * Allow: / Sitemap: https://example.com/sitemap.xml
<loc> is XML-escaped — &, <, >, quotes and apostrophes become entities. An unescaped ampersand in a query string is the single most common reason a sitemap fails to parse.lastmod must be a W3C datetime — YYYY-MM-DD is accepted. Lying about it (bumping every page daily) trains crawlers to ignore the field.