sitemap.xml
A sitemap.xml file is an XML file that lists the pages of a website to help search engines like Google index the content. Here’s a simple breakdown of its structure and purpose:
- Purpose:
- Improves SEO by helping search engines find and understand site structure.
- Informs search engines about new or updated content.
- Basic Structure:
- urlset - The root element that contains all the URL entries.
- url - Contains individual URL entries.
- loc - The URL of the page.
- lastmod - The last modification date of the page.
- 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/about</loc>
<lastmod>2023-10-01</lastmod>
<changefreq>yearly</changefreq>
<priority>0.5</priority>
</url>
</urlset>
This file should be placed in the