sitemap.xml
Here is a basic example of a `sitemap.xml` file:
```xml
http://www.example.com/
2023-10-01
monthly
1.0
http://www.example.com/about
2023-09-15
yearly
0.8
http://www.example.com/contact
2023-09-20
yearly
0.5
http://www.example.com/blog
2023-10-05
weekly
0.7
```
This XML structure contains the following elements:
- <url>: Represents a single URL entry in the sitemap.
- <loc>: Specifies the location (URL) of the page.
- <lastmod>: Indicates the date the URL was last modified.
- <changefreq>: Suggests how frequently the page is likely to change (e.g., daily, weekly, monthly, yearly).
- <priority>: Indicates the priority of the URL relative to other URLs on your site (value between 0.0 and 1.0).
Make sure to replace the example URLs and modify the dates and frequencies according to your site's actual content and update schedule.