sitemap.xml
A `sitemap.xml` file is an XML file that lists the URLs of a website to help search engines like Google crawl and index the site more effectively. Here’s a simple structure of what a `sitemap.xml` might look like:
```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-20
yearly
0.5
```
### Key Elements:
- : The URL of the page.
- : The date the page was last modified.
- : How frequently the page is likely to change (e.g., daily, weekly, monthly).
- : The priority of the page relative to other pages on the site.
This structure helps search engines understand the layout of your site and prioritize their crawling.