A `sitemap.xml` file is an XML document that helps search engines understand the structure of a website. It provides a list of URLs for a site, making it easier for search engines to crawl and index its content. Here’s a simple overview of its components:
- XML Declaration: Indicates that the document is XML.
- urlset: The root element that contains all the URLs.
- url: Each URL entry contains several sub-elements, including:
- loc: The URL of the page.
- lastmod: The date the page was last modified.
- changefreq: How often the page is likely to change.
- priority: The priority of the page relative to other pages on the site.
Here’s a basic example of what a `sitemap.xml` file might look like:
<?xml-stylesheet type="text/xsl" href="sitemap.xsl"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap-image/1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap-image/1.1
http://www.sitemaps.org/schemas/sitemap-image/1.1/sitemap-image.xsd">
<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-09-15</lastmod>
<changefreq>year