A `sitemap.xml` file is an XML document that helps search engines understand the structure of your website. It provides information about the pages, videos, and other files on your site, and their relationships. Here’s a simple overview of its structure and purpose:
- Purpose: To inform search engines about the URLs on your website that are available for crawling.
- Format: The file must adhere to XML standards.
- Common Tags:
- <urlset> - The root element that contains all URLs.
- <url> - Contains individual URL entries.
- <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.
- <priority> - Indicates the priority of the URL relative to other URLs on your site.
Here’s 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>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>http://www.example.com/about</loc>
<lastmod>2023-09-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</