Bitrix split the sitemap into parts
The last notes
All English-language materials have been translated fully automatically using the Google service
Search bots have limits on the size of a readable site map, if it exceeds the limit, then the bot will not read it. Solving this problem in Bitrix is quite simple.
Go to /bitrix/modules/seo/lib/sitemapfile.php
and find the constant MAX_SIZE
. It is responsible for the size of the generated file. The main feature that it breaks is not by the number of links, but by the file size. For example, by asking
const MAX_SIZE = 1250000;
we will get sitemap files with an average weight of 1.22Mb
Comments