sitemap.xml
A sitemap.xml file is an important tool for search engines to understand the structure of your website. It typically contains a list of URLs along with additional information such as the last modified date and priority. Here’s a simple example of what a sitemap.xml might look like:
```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
monthly
0.5
```
In this example:
- loc: The URL of the page.
- lastmod: The last modified date of the page.
- changefreq: How often the page is likely to change (e.g., daily, weekly).
- priority: The priority of the page relative to other pages on the site.
Creating and submitting a sitemap.xml file can help improve your website's SEO by ensuring that search engines can easily find and index your pages.