A
sitemap.xml is an XML file that provides information about the pages, videos, and other files on a site, and the relationships between them. It helps search engines like Google to crawl the site more intelligently.
Here are the key components of a typical
sitemap.xml file:
- <urlset>: The root element that contains all the <url> entries.
- <url>: Represents a single URL on the site.
- <loc>: The location of the URL.
- <lastmod>: The date when the URL was last modified.
- <changefreq>: How frequently the URL is likely to change (e.g., daily, weekly).
- <priority>: The priority of the URL relative to other URLs on the site.
Here is a simple example of a
sitemap.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap-image/1.1">
<url>
<loc>http://www.example.com/</loc>
<lastmod>2023-10-01</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>http://www.example.com/about</loc>
<lastmod>2023-10-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
Including a
sitemap.xml file on your website can enhance SEO by making it easier for search engines to index your content