A sitemap.xml file is used to inform search engines about the pages on your website that are available for crawling. It is an XML file that provides a structured list of your site's URLs.
Here are some key elements of a sitemap.xml file:
- URL Set: The root element that encapsulates the list of URLs.
- URL Element: Each URL entry is wrapped in a <url> tag.
- Loc: The <loc> tag contains the full URL of the page.
- Last Modified: The <lastmod> tag indicates the last time the URL was modified.
- Change Frequency: The <changefreq> tag suggests how often the URL is likely to change.
- Priority: The <priority> tag indicates the priority of the URL relative to other pages on the site.
A basic example of a sitemap.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap-image/1.1">
<url>
<loc>http://www.example.com/</loc>
<lastmod>2023-10-01</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>http://www.example.com/about</loc>
<lastmod>2023-09-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
This file helps search engines effectively crawl your site and index its pages, improving visibility in search results.