A `sitemap.xml` file is an XML file that provides search engines with information about the pages, videos, and other files on your site. It helps them crawl your website more efficiently. Here’s a simple breakdown of its structure:
- XML Declaration: Indicates that this is an XML file.
- URL Set: The main container for the URLs.
- URL Entry: Each URL entry is defined with specific child elements:
- loc: The URL of the webpage.
- lastmod: The last time the page was modified.
- changefreq: How frequently the page is likely to change.
- priority: The priority of the page relative to other pages on the site.
Here’s 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>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>
Ensure your `sitemap.xml` is accessible at the root of your domain, such as `http://www.example.com/sitemap.xml`, to help search engines discover it easily.