Site map
A sitemap is a list of
There are three primary kinds of sitemap:
- Sitemaps used during the planning of a website by its designers
- Human-visible listings, typically hierarchical, of the pages on a site
- Structured listings intended for search engines
Types of sitemaps
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, the
XML sitemaps
Since the major search 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]
Sample
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"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.example.net/?id=who</loc>
<lastmod>2009-09-22</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://www.example.net/?id=what</loc>
<lastmod>2009-09-22</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://www.example.net/?id=how</loc>
<lastmod>2009-09-22</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
</urlset>
See also
- Biositemap, a protocol for broadcasting and disseminating information about computational biology resources (data, software tools and web-services)
- Contact page
- Home page
- Search engine indexing
- Link page
- Search engine optimization
- Web indexing
References
- ^ Sitemap Usability Jakob Nielsen's Alertbox, August 12, 2008
- ^ Nadik, Tessa (2023-02-09). "What Is A Sitemap? Do I Need One?". Search Engine Journal. Retrieved 2023-09-16.
- Oreilly. Retrieved 2012-07-24.
- ^ Joint announcement from Google, Yahoo, and Bing supporting Sitemaps
- ^ "Submitting Sitemaps". Google Inc. Retrieved 2012-07-06.
External links
- Common Official Website - Jointly maintained website by Google, Yahoo, MSN for an XML sitemap format.
- Sitemap generators at Curlie