A `sitemap.xml` file is an XML document that helps search engines understand the structure of your website. It lists all the important pages on your site, allowing search engines to crawl and index them effectively. Here’s a simple outline of what a `sitemap.xml` might include:
- <urlset>: The root element of the sitemap.
- <url>: Contains information about each URL.
- <loc>: The URL of the page.
- <lastmod>: The last modification date of the page.
- <changefreq>: How frequently the page is likely to change (e.g., daily, weekly).
- <priority>: The priority of the page relative to other pages on the site (0.0 to 1.0).
Here’s a simple example of a `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>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.example.com/about</loc>
<lastmod>2023-09-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
This structure helps search engines like Google and Bing to better index your website, improving visibility in search results.