What is an XML sitemap?
An XML sitemap is a structured XML file listing the canonical URLs of a website, providing search engines like Google with a complete roadmap for crawling and indexing.
Where should sitemap.xml be hosted?
Upload the file to your website's root folder so it is accessible at `https://yourdomain.com/sitemap.xml`.
How do I submit my sitemap to Google Search Console?
Sign into Google Search Console, navigate to the **Sitemaps** menu item, paste your sitemap URL (`https://yourdomain.com/sitemap.xml`), and click Submit.
What are the official size limits for a sitemap.xml file?
A single sitemap file can hold up to 50,000 URLs and cannot exceed 50 megabytes (MB) in size.
Does submitting a sitemap guarantee Google will index my pages?
No. A sitemap assists Google in discovering URLs, but indexation decisions depend on content quality, originality, and site authority.
How does priority work in an XML sitemap?
The `<priority>` tag signals the relative importance of a page compared to other URLs on the same site. It ranges from `0.0` to `1.0`.
Is my URL list kept private while using this tool?
Yes. All URL parsing and XML generation take place 100% locally inside your browser's JavaScript runtime.
Should I include redirected URLs in my sitemap?
No. Only include canonical URLs returning a `200 OK` HTTP status code. Omit 301 redirects, 404 errors, and noindex pages.
Why is the <lastmod> tag important for SEO?
The `<lastmod>` tag tells Googlebot when content was updated, signaling that fresh content is ready to be re-crawled.
What is a Sitemap Index file?
A Sitemap Index file (`sitemap-index.xml`) is a master sitemap that groups multiple individual sitemap files together for large websites.
Should image or video URLs be included in sitemaps?
Yes! You can add image extensions (`<image:image>`) to your XML sitemap to help Google Image Search discover media assets.
How often should I update my XML sitemap?
Modern Next.js or dynamic CMS frameworks update sitemaps automatically upon page publication. For static sites, regenerate your sitemap whenever major content is added.
How do I link my sitemap in robots.txt?
Add `Sitemap: https://yourdomain.com/sitemap.xml` at the bottom of your `robots.txt` file.
Are there keyboard shortcuts?
Press `Ctrl+L` (or `Cmd+L` on Mac) to clear the URL input field instantly.