Asite map orsitemap is a list ofpages of aweb site within adomain.
There are three primary kinds of sitemap:


Sitemaps may be addressed to users or to software.
Many sites have user-visible sitemaps which present a systematic view, typically hierarchical, of the site. These are intended to help visitors find specific pages, and can also be used by crawlers. They also act as a navigation aid[1] by providing an overview of a site's content at a single glance.Alphabetically organized sitemaps, sometimes called site indexes, are a different approach.
For use by search engines and other crawlers, there is a structured format, theXML Sitemap, which lists the pages in a site, their relative importance, and how often they are updated.[2] This is pointed to from therobots.txt file and is typically calledsitemap.xml. The structured format is particularly important for websites which include pages that are not accessible throughlinks from other pages, but only through the site's search tools or by dynamic construction ofURLs inJavaScript.
Google introduced theSitemap protocol, so web developers can publish lists of links from across their sites. The basic premise is that some sites have a large number of dynamic pages that are only available through the use of forms and user entries. The Sitemap files contain URLs to these pages so thatweb crawlers can find them.Bing, Google,Yahoo andAsk now jointly support the Sitemaps protocol.
Since the majorsearch engines use the same protocol,[3] having a Sitemap lets them have the updated page information. Sitemaps do not guarantee all links will be crawled, and being crawled does not guarantee indexing.[4] Google Webmaster Tools allow a website owner to upload a sitemap that Google will crawl, or they can accomplish the same thing with the robots.txt file.[5]
Below is an example of a validated XML sitemap for a simple three-page website. Sitemaps are a useful tool for making sites searchable, particularly those written in non-HTML languages.
<?xml version="1.0" encoding="UTF-8"?><urlsetxmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>http://www.example.net/?id=who</loc><lastmod>2009-09-22</lastmod></url><url><loc>http://www.example.net/?id=what</loc><lastmod>2009-09-22</lastmod></url><url><loc>http://www.example.net/?id=how</loc><lastmod>2009-09-22</lastmod></url></urlset>
Notes:
<priority> and<changefreq> values.[6]<lastmod> value if it is consistently and verifiably accurate (for example, matching the actual last modification date of the page).[6]