A `sitemap.xml` file is an XML document that provides search engines with information about the pages on a website. Here’s a basic outline of its structure and purpose:
- Purpose: Helps search engines crawl and index a website more intelligently.
- Format: Must adhere to XML standards.
- Common Tags:
- <urlset>: The root element that contains all URLs.
- <url>: Contains information about each URL.
- <loc>: The URL of the page.
- <lastmod>: The date the page was last modified.
- <changefreq>: How frequently the page 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` file:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap-image/1.1">
<url>
<loc>https://www.example.com/</loc>
<lastmod>2023-10-01</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.example.com/about</loc>
<lastmod>2023-09-15</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
</urlset>
This file should be placed in the root directory of your website and submitted to search engines via tools