sitemap.xml
A `sitemap.xml` file is an important component for search engine optimization (SEO). It helps search engines like Google understand the structure of your website. Here’s a brief overview of its purpose and structure:
Purpose of sitemap.xml:
- Provides a roadmap of your website's pages.
- Informs search engines about new or updated content.
- Helps improve the indexing of your website.
Basic Structure of sitemap.xml:
- xml declaration: Declares the file as an XML document.
- urlset: The root element that contains all the URLs.
- url: An individual entry for each page, containing:
- 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 page relative to other pages on the site.
Example of a simple sitemap.xml:
<?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/page1</loc>
<lastmod>2023-09-15</lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>