ch.at

Universal Basic Intelligence

pronounced "ch-dot-at"

sitemap.xml

sitemap.xml

A sitemap.xml file is an XML file that lists all the pages of a website to help search engines discover and crawl the site's content more efficiently. Here's a basic example of what a sitemap.xml file looks like:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <url>
      <loc>https://www.example.com/</loc>
      <lastmod>2023-07-15</lastmod>
      <changefreq>daily</changefreq>
      <priority>1.0</priority>
   </url>
   <url>
      <loc>https://www.example.com/about</loc>
      <lastmod>2023-06-20</lastmod>
      <changefreq>monthly</changefreq>
      <priority>0.8</priority>
   </url>
   <url>
      <loc>https://www.example.com/products</loc>
      <lastmod>2023-07-10</lastmod>
      <changefreq>weekly</changefreq>
      <priority>0.9</priority>
   </url>
</urlset>

Key Elements in sitemap.xml

  • url
    🟠 claude-3.7-sonnet