A `sitemap.xml` file is an XML file that provides information about the pages, videos, and other files on your site, as well as the relationships between them. This helps search engines better understand your website structure and index it more effectively. Below is a simple example of how a `sitemap.xml` file might look:
```xml
https://www.example.com/
2023-10-01
daily
1.0
https://www.example.com/about
2023-10-01
monthly
0.8
https://www.example.com/contact
2023-10-01
yearly
0.5
https://www.example.com/blog
2023-10-01
weekly
0.7
```
In this example:
- loc: The URL of the page.
- lastmod: The last modification date of the page.
- changefreq: How frequently the page is likely to change.
- priority: The priority of the page relative to other pages on the site.
Make sure to update your `sitemap.xml` regularly to reflect changes in your website. You can submit it to search engines like Google to help with indexing.