Learn how to import your website's sitemap to enable comprehensive content analysis and optimization across all your pages.
A sitemap is a file that lists all the pages on your website. It helps search engines and AI systems discover and understand your content structure. CleverSearch uses your sitemap to:
Standard XML format
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://example.com/</loc>
<lastmod>2024-01-15</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://example.com/about</loc>
<lastmod>2024-01-10</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>RSS/Atom feed format
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>My Website</title>
<link>https://example.com</link>
<item>
<title>About Us</title>
<link>https://example.com/about</link>
<pubDate>Mon, 15 Jan 2024 10:00:00 GMT</pubDate>
</item>
</channel>
</rss>Simple text file with URLs
https://example.com/ https://example.com/about https://example.com/contact https://example.com/blog
Most websites have their sitemap at /sitemap.xml or/sitemap_index.xml. Try these URLs first!
Ensure your sitemap is publicly accessible and returns a 200 status code
Check your XML syntax and ensure proper encoding (UTF-8)
Verify all important pages are included in your sitemap
Update lastmod dates when content changes to help with crawling
After importing your sitemap, you can start analyzing your content and optimizing for AI systems.