Sitemap Generator

Create XML sitemaps for better search engine indexing

URLs (3)

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>
    <lastmod>2026-01-26</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://example.com/about</loc>
    <lastmod>2026-01-26</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://example.com/contact</loc>
    <lastmod>2026-01-26</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.5</priority>
  </url>
</urlset>

Related Tools

What is a Sitemap?

A sitemap is an XML file that lists all important URLs on your website. It helps search engines discover and crawl your pages more efficiently, ensuring your content gets indexed properly.

This generator creates valid XML sitemaps with lastmod dates, change frequency hints, and priority values. Simply add your URLs and download the sitemap.xml file for your website.

Sitemap Fields

loc (required)

The full URL of the page. Must be absolute.

lastmod

When the page was last modified. Helps crawlers prioritize.

changefreq

How often the page changes. A hint, not a command.

priority

Relative importance (0.0-1.0). Homepage is usually 1.0.

Implementation

  1. Download your sitemap.xml file
  2. Upload to your website root (example.com/sitemap.xml)
  3. Add sitemap location to your robots.txt
  4. Submit to Google Search Console

FAQ

How many URLs can a sitemap have?

50,000 URLs and 50MB maximum. For larger sites, use a sitemap index file.

Do I need a sitemap?

Recommended for sites with 500+ pages, new sites, or sites with poor internal linking.