<?php
/**
 * Sitemap Index - Points to language-specific sitemaps
 * Better for large sites with multiple languages
 */

header('Content-Type: application/xml; charset=utf-8');
include('functions.php');

$domain = getDomain();
$langs = getLangsCodes();

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    
    <!-- Main sitemap -->
    <sitemap>
        <loc>https://<?php echo $domain; ?>/sitemap.xml.php</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
    </sitemap>
    
    <?php foreach($langs as $lang): 
        $prefix = $lang == 'en' ? '' : $lang.'.';
    ?>
    <!-- Sitemap for <?php echo $lang; ?> -->
    <sitemap>
        <loc>https://<?php echo $prefix.$domain; ?>/sitemap-<?php echo $lang; ?>.xml.php</loc>
        <lastmod><?php echo date('Y-m-d'); ?></lastmod>
    </sitemap>
    <?php endforeach; ?>
    
</sitemapindex>
