sitemap.xml
A `sitemap.xml` file is an XML file that helps search engines understand the structure of your website. It typically includes a list of URLs for the pages you want to be indexed, along with additional information about each URL.
Here’s a simple structure for a `sitemap.xml` file:
```xml
https://www.example.com/
2023-10-01
monthly
1.0
https://www.example.com/about
2023-10-01
monthly
0.8
https://www.example.com/contact
2023-10-01
yearly
0.5
```
In this example:
- <url>: Represents a single URL entry.
- <loc>: The location 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 your site.
Remember to update your `sitemap.xml` file regularly to reflect changes on your website.