sitemap.xml
A `sitemap.xml` file is a crucial element for search engine optimization (SEO). It helps search engines understand the structure of your website and index its pages more effectively. Below is 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-10-01
monthly
0.8
https://www.example.com/contact
2023-10-01
yearly
0.5
```
In this example:
- <url>: This tag is used to define each individual URL.
- <loc>: The location of the page.
- <lastmod>: The last modification date of the page.
- <changefreq>: How frequently the page is likely to change.
- <priority>: The priority of the page relative to other pages on the site.
Creating a `sitemap.xml` helps improve your site's SEO by ensuring that search engines can efficiently crawl and index your content.