Sitemaps - Waiviogit/waivio GitHub Wiki

https://developers.google.com/search/docs/crawling-indexing/sitemaps/build-sitemap https://www.sitemaps.org/protocol.html

Sitemap for waivio

Waivio sitemap includes:

  • all objects
  • users
  • posts

URL: /sitemap.xml

Example, if the number of URLs is up to 50000

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <url>
      <loc>http://example.com/page1.html</loc>
   </url>
   <!-- additional URL entries go here -->
</urlset>

Example, if there are more than 50000 URLs, then there will be a common sitemap with links to each sitemap (where are these 50000 URLs)

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <sitemap>
      <loc>http://example.com/sitemap1.xml</loc>
   </sitemap>
   <sitemap>
      <loc>http://example.com/sitemap2.xml</loc>
   </sitemap>
   <!-- additional Sitemap entries go here -->
</sitemapindex>

Sitemap for social sites

Sitemap for social site includes all objects that related to site (have authority).

Main URL: https://{site}/sitemap.xml

Sitemap with max 50000 URLs.

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <url>
      <loc>http://example.com/page1.html</loc>
   </url>
   <!-- additional URL entries go here -->
</urlset>

The sitemap undergoes daily updates at approximately 5 PM Kyiv time.

Additional information

  • [social sites / sitemap] Add sitemap for social site #5993
  • [waivio / sitemap] Add sitemap for waivio #5995
  • Rewrite socket on sitemap and ads.txt to http #6149
  • Add menu items links (main menu site navigation) to sitemap #6080
  • [*.social.gifts / sitemap] except products, you need to add all nested lists, as well as pages #6040
  • Add sitemap link to robots.txt for waivio and social sites #6021
  • Add site posts and user to the sitemap #6284
  • [social.gifts / sitemap] the owner of the site acceptcryptomap.com has many favorites (restaurants), but they are not in the sitemap of the site #6634
⚠️ **GitHub.com Fallback** ⚠️