Build a sitemap.xml file from CSV rows describing URLs and optional SEO metadata.
CSV format
One URL per line with optional columns:
url,lastmod,changefreq,priority
- url (required) ā absolute HTTPS address
- lastmod ā ISO 8601 date of last modification
- changefreq ā hint such as
daily,weekly,monthly - priority ā decimal 0.0ā1.0 relative weight
Extra columns are ignored. The generator wraps rows in the standard <urlset> namespace expected by search engines.
When to use it
Bootstrap sitemaps for static sites, convert spreadsheet URL inventories into uploadable XML, or teach the sitemap protocol without hand-editing tags.
Limitations
Does not crawl your site or verify that URLs return 200. Invalid URLs, duplicate entries, or more than 50,000 URLs per file (protocol limit) are your responsibility. changefreq and priority are hints only ā crawlers may disregard them.
Example
For example, enter the default sample values on the form and compare the output with a known reference; adjust one input at a time to see how the result changes.