Sitemap Validator

Sitemap Validator - SEO Sitemap Error Scanner

Sitemap Validator

Scan your sitemap for errors and issues, ensuring it's properly formatted and free of problems that could affect search engine crawling.

Validating sitemap structure and checking for errors...

Sitemap Validation Checks

  • XML Structure: Validates proper XML syntax and encoding
  • Schema Compliance: Checks against sitemap.org schema standards
  • URL Format: Ensures all URLs are properly formatted and absolute
  • File Size: Verifies sitemap doesn't exceed 50MB limit
  • URL Count: Checks for maximum 50,000 URLs per sitemap
  • Date Format: Validates lastmod dates are in correct ISO format
  • Priority Values: Ensures priority values are between 0.0 and 1.0
  • Change Frequency: Validates changefreq values are standard

Common Sitemap Errors

❌ Critical Errors:

<!-- Missing XML declaration --> <urlset> <url> <loc>relative/url</loc> <!-- Should be absolute --> <lastmod>2024-13-45</lastmod> <!-- Invalid date --> <priority>1.5</priority> <!-- Invalid priority --> </url> </urlset>

✅ Correct Format:

<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>https://example.com/page/</loc> <lastmod>2024-01-15</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> </urlset>

🔍 What We Check:

  • XML declaration and encoding
  • Proper namespace declaration
  • Valid URL structure (absolute URLs only)
  • Date format compliance (YYYY-MM-DD or ISO 8601)
  • Priority values (0.0 to 1.0)
  • Change frequency values (always, hourly, daily, weekly, monthly, yearly, never)
  • File size and URL count limits
  • Duplicate URL detection
  • Accessibility of referenced URLs