sitemap.xml
A sitemap.xml file is an XML file that lists the URLs for a site along with additional metadata about each URL. This helps search engines like Google to crawl the site more intelligently. Below is a simple example of what a sitemap.xml file might look like:
```xml
http://www.example.com/
2023-10-01
monthly
1.0
http://www.example.com/about
2023-10-01
yearly
0.8
http://www.example.com/contact
2023-10-01
yearly
0.5
```
In this example:
- <loc>: Specifies the URL of the page.
- <lastmod>: Indicates the last modification date of the URL.
- <changefreq>: Suggests how frequently the page is likely to change.
- <priority>: Indicates the importance of the page relative to other pages on the site.
Creating a sitemap.xml file can improve your website's SEO by making it easier for search engines to understand the structure of your website and index it more effectively.