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 your site more effectively.
Here is a simple example of how a `sitemap.xml` file is structured:
```xml
http://www.example.com/
2023-10-01
daily
1.0
http://www.example.com/about
2023-10-01
monthly
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 page.
- <changefreq>: Suggests how frequently the page is likely to change (e.g., daily, weekly, monthly).
- <priority>: Provides a priority for the page relative to other pages on the site, on a scale from 0.0 to 1.0.
Make sure to update your `sitemap.xml` file regularly to reflect any changes to your website. Additionally, submit your sitemap to search engines to improve your site's SEO.