sitemap.xml
A `sitemap.xml` file is an XML file that lists the URLs of a website to help search engines like Google crawl the site more effectively. Here is a basic structure of a `sitemap.xml` file:
```xml
https://www.example.com/
2023-10-01
weekly
1.0
https://www.example.com/about
2023-09-15
monthly
0.8
https://www.example.com/contact
2023-08-20
monthly
0.6
```
In the above example:
- <urlset>: The root element that contains all URL entries.
- <url>: Each URL entry.
- <loc>: The location of the URL.
- <lastmod>: The last modification date of the URL.
- <changefreq>: How frequently the content is expected to change (e.g., daily, weekly, monthly).
- <priority>: The priority of the URL relative to other URLs on the site (0.0 to 1.0).
Make sure to replace the URLs and dates with the actual data relevant to your site.