A sitemap.xml file is an XML document that helps search engines understand the structure of a website. It lists the pages on the site and provides important information about each page. Here's a basic overview of its structure:
- XML Declaration: The file begins with a declaration that defines it as an XML document.
- URL Set: The main container for the URLs listed in the sitemap.
- URL Entry: Each URL entry includes several optional elements:
- loc: The location of the URL.
- lastmod: The last modification date of the URL.
- changefreq: How frequently the URL is likely to change.
- priority: The priority of the URL relative to other URLs on the site.
Here's an example of a simple sitemap.xml:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap-image/1.1">
<url>
<loc>https://www.example.com/</loc>
<lastmod>2023-10-01</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.example.com/about</loc>
<lastmod>2023-09-15</lastmod>
<changefreq>yearly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
This structure helps search engines crawl the site more efficiently and ensures that the most important pages are indexed.