sitemap.xml
A `sitemap.xml` file is an XML file that helps search engines understand the structure of a website. It provides a list of the pages on a site, allowing search engines to crawl the content more efficiently. Here’s a simple structure of what a `sitemap.xml` might look like:
```xml
https://www.example.com/
2023-10-01
monthly
1.0
https://www.example.com/about
2023-09-15
yearly
0.8
https://www.example.com/contact
2023-08-20
yearly
0.5
```
In this example:
- <url>: Represents a single URL in the sitemap.
- <loc>: The location (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, monthly).
- <priority>: The priority of the page relative to other pages on the site (scale of 0.0 to 1.0).
Using a `sitemap