sitemap.xml
A `sitemap.xml` file is used to inform search engines about the pages on a website that are available for crawling. It helps improve the indexing of your site. Below is 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-09-15
yearly
0.8
https://www.example.com/contact
2023-09-10
yearly
0.5
```
In this example:
- <url>: This tag defines a URL entry.
- <loc>: The location of the web page.
- <lastmod>: The last modification date of the page.
- <changefreq>: The frequency of changes to the page (e.g., daily, weekly, monthly).
- <priority>: The priority of the page relative to other pages on the site (between 0.0 and 1.0).
Make sure to update