sitemap.xml
A `sitemap.xml` file is used to inform search engines about the pages on your website. Here’s a simple structure of a `sitemap.xml` file:
```xml
https://www.example.com/
2023-10-01
monthly
1.0
https://www.example.com/about
2023-10-01
yearly
0.8
https://www.example.com/contact
2023-10-01
yearly
0.5
```
In this example:
- <url>: Represents each URL on your site.
- <loc>: The location (URL) of the page.
- <lastmod>: The last modified 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 (between 0.0 and 1.0).
Make sure to replace the example URLs and dates with your actual site data when creating your own `sitemap.xml`.