<?php
/**
 * XML Sitemap - 网站地图
 * 帮助搜索引擎更好地索引网站
 */
header('Content-Type: application/xml; charset=utf-8');

$baseUrl = 'https://videotools.ota.zkkw.top';
$lastMod = date('Y-m-d');

$pages = [
    [
        'url' => 'index.php',
        'priority' => '1.0',
        'changefreq' => 'weekly'
    ],
    [
        'url' => 'contact.php',
        'priority' => '0.8',
        'changefreq' => 'monthly'
    ]
];
?>
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
        http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
    <?php foreach ($pages as $page): ?>
    <url>
        <loc><?php echo $baseUrl . '/' . $page['url']; ?></loc>
        <lastmod><?php echo $lastMod; ?></lastmod>
        <changefreq><?php echo $page['changefreq']; ?></changefreq>
        <priority><?php echo $page['priority']; ?></priority>
    </url>
    <?php endforeach; ?>
</urlset>
