A sitemap.xml file is used to provide search engines with information about the pages on a website. It helps ensure that all pages are indexed effectively. A typical sitemap.xml file is formatted in XML and includes the following elements:
- <urlset>: The root element that contains all the URLs.
- <url>: Contains information about a specific URL.
- <loc>: The location of the URL.
- <lastmod>: The date the URL was last modified.
- <changefreq>: How frequently the content at the URL is likely to change.
- <priority>: The priority of the URL relative to other URLs on the site.
Here is a simple example of a sitemap.xml structure:
<?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>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.8</priority>
</url>
</urlset>
This XML structure helps search engines discover and prioritize the content on your site efficiently.