sitemap.xml
A `sitemap.xml` file is an essential component for search engine optimization (SEO) and site indexing. It helps search engines understand the structure of a website and discover new or updated pages. Below is a simple structure of a `sitemap.xml` file:
```xml
http://www.example.com/
2023-10-01
daily
1.0
http://www.example.com/about
2023-09-15
monthly
0.8
http://www.example.com/contact
2023-08-20
yearly
0.5
```
- loc: The URL of the page.
- lastmod: The date the page was last modified.
- changefreq: How often the page is likely to change (e.g., daily, weekly, monthly).
- priority: The priority of the page relative to other pages on the site (0.0 to 1.0).
Including a `sitemap.xml` file can improve the visibility of your website in search engine results. Make sure to submit your sitemap to search engines like Google and Bing for better indexing.