A sitemap.xml is an XML file that provides information about the pages, videos, and other files on your site, and their relationships. It helps search engines like Google to crawl your site more intelligently.
Here are some key components of a sitemap.xml:
- URL: The web address of a page.
- Last Modified: The date the page was last updated.
- Change Frequency: How often the content is likely to change (e.g., daily, weekly).
- Priority: The priority of the page relative to other pages on the site.
A basic structure of a sitemap.xml file looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap-image">
<url>
<loc>http://www.example.com/</loc>
<lastmod>2023-10-01</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>http://www.example.com/about</loc>
<lastmod>2023-09-15</lastmod>
<changefreq>yearly</changefreq>
<priority>0.5</priority>
</url>
</urlset>
Including a sitemap.xml file on your website can improve SEO and help search engines index your site more effectively.