Skip to content
Last update: January 30, 2024

Managing sitemaps

Managing sitemaps includes:

To manage the store sitemaps:

  1. In the main menu, click Stores.
  2. From the list of stores, click the store you need to manage sitemaps for.
  3. In the next blade, click the Sitemaps widget.
  4. In the next Sitemaps blade, you will see a list of sitemaps to be included into the sitemap index file.

Sitemaps screen

Add new sitemap to store

To add a new sitemap:

  1. Click Add in the toolbar.
  2. Fill in the following fields:

    New sitemap

  3. Click Create to save the changes.

The example below involves three sitemap locations for different types of pages. The sitemap item locations are determined using language-culture slugs.

<sitemapindex xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://sitemaps/en-US/sitemap/vendor.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://sitemaps/en-US/sitemap/catalog.xml</loc>
  </sitemap>
  <sitemap>
    <loc>https://sitemaps/en-US/sitemap/blog.xml</loc>
  </sitemap>
</sitemapindex>

Add sitemap items

To add sitemap items:

  1. Select a sitemap from the list.
  2. In the next blade, click the Add items in the toolbar.
  3. Select the items to be added to the sitemap:

    Item types

  4. Click Save to save the changes.

Download sitemaps

After creating your sitemap, you can download a ZIP package containing your sitemap(s) in order to view what it includes:

  1. Click Download sitemaps in the top toolbar.

  2. In the new window, enter base URL for sitemaps and confirm your action.

The ZIP package you have downloaded contains the sitemap.xml file with the sitemap locations (see the example above) and the sitemap item XML files:

Sitemap ZIP package folder structure

Each sitemap item file includes the corresponding URL with a specific language culture:

1
2
3
4
5
6
7
<urlset xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://vcplatform-storefront.qa.govirto.com/en-US/</loc>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
  </url>
</urlset>