<?php 
require_once("_cms_boot.php");
header('Content-Type: text/xml'); 
$host = 'https://'.$host;
?>
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc><?php echo $host; ?>/sitemap/sitemap-pages.xml</loc>
  </sitemap>
<?php
echo '<sitemap>';
  echo '<loc>'.$host.'/sitemap/sitemap-categories.xml</loc>';
echo '</sitemap>';
foreach(range('a','z') as $letter){
  echo '<sitemap>';
    echo '<loc>'.$host.'/sitemap/sitemap-products-'.$letter.'.xml</loc>';
  echo '</sitemap>';
}
?>
</sitemapindex>