A `sitemap.xml` file is an XML document that helps search engines understand the structure of a website. It lists all the important pages on the site, ensuring that search engines can find and index them effectively.
Here’s a simple overview of the elements typically found in a `sitemap.xml` file:
- <urlset>: The root element that contains all the URLs.
- <url>: Wrapping element for each individual URL entry.
- <loc>: Specifies the location (URL) of the page.
- <lastmod>: Indicates the last modification date of the URL.
- <changefreq>: Suggests how frequently the page is likely to change (e.g., daily, weekly, monthly).
- <priority>: Indicates the importance of the URL relative to other pages on the site (between 0.0 and 1.0).
Here is a simple example of a `sitemap.xml` structure:
<?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-09-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
</urlset>
Using a `sitemap.xml` file