sitemap.xml
A
sitemap.xml file is an XML file that provides information about the pages, videos, and other files on your site, and the relationships between them. It helps search engines like Google to crawl your website more intelligently.
Here are some key components of a
sitemap.xml file:
- XML Declaration: The file starts with an XML declaration that defines the version of XML.
- URL Set: The
element wraps all the URLs in the sitemap.
- URL Entry: Each URL is enclosed within a
tag.
- Loc: The
tag specifies the URL of the page.
- Last Modified: The
tag indicates when the page was last modified.
- Change Frequency: The
tag suggests how often the page is likely to change.
- Priority: The
tag indicates the importance of the page relative to other pages 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>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>monthly</changefreq>
<priority>0.8