…
…
Use this free XML Sitemap Generator to create XML sitemaps that help search engines discover and crawl your website more efficiently. Enter your site details, configure options, and generate a sitemap file compatible with major search engines.
Instead of hand-writing XML files, let the generator build a valid sitemap structure that you can upload to your site and submit to Google Search Console or other webmaster tools.
The generator helps you:
You can then make the sitemap available at a standard location, such as https://www.example.com/sitemap.xml, and reference it in your robots.txt file.
Sitemaps help search engines find new or hard-to-discover pages, especially on larger or more complex sites.
By listing key pages in a sitemap, you can guide search engines toward the most valuable content on your site.
Submitting a sitemap to search engine webmaster tools gives you visibility into which URLs are indexed and whether any issues were encountered.
All of the major search engines support the formalized XML data protocol as defined on Sitemaps.org. A sample of the XML code used in a Sitemap looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.example.com/</loc>
<lastmod>2012-04-30</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>http://www.example.com/about-us.html</loc>
<changefreq>yearly</changefreq>
<priority>0.4</priority>
</url>
</urlset>Getting information off the Internet is like taking a drink from a fire hydrant.
…