sitemap.xml
A `sitemap.xml` file is an XML file that helps search engines understand the structure of your website. It lists all the important pages of your site to ensure they can be crawled efficiently. Here’s a simple example of what a `sitemap.xml` file might look like:
```xml
https://www.example.com/
2023-10-01
daily
1.0
https://www.example.com/about
2023-09-28
monthly
0.8
https://www.example.com/contact
2023-09-25
yearly
0.5
```
In this example:
- <url>: Represents a single URL on your website.
- <loc>: Specifies the location of the page.
- <lastmod>: Indicates the last modification date of the page.
- <changefreq>: Suggests how frequently the page is likely to change.
- <priority>: Indicates the priority of the page relative to other pages on your site.
Creating a `sitemap.xml` file can enhance your website's SEO by facilitating better indexing by search engines.