<?xml version="1.0" encoding="UTF-8"?>
<?php
// 91网 - 动态Sitemap
// 动态获取当前域名
$currentHost = isset($_SERVER['HTTP_HOST']) ? htmlspecialchars($_SERVER['HTTP_HOST']) : 'localhost';
$currentScheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$currentOrigin = $currentScheme . '://' . $currentHost;
$today = date('Y-m-d');
header('Content-Type: application/xml; charset=UTF-8');
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
  <url>
    <loc><?php echo $currentOrigin; ?>/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
    <image:image>
      <image:loc><?php echo $currentOrigin; ?>/images/banner.jpg</image:loc>
      <image:title>91网 - 生活技能视频教程与工具平台</image:title>
      <image:caption>91网首页Banner - <?php echo $currentHost; ?></image:caption>
    </image:image>
  </url>
  <url>
    <loc><?php echo $currentOrigin; ?>/features/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
    <image:image>
      <image:loc><?php echo $currentOrigin; ?>/images/feature1.jpg</image:loc>
      <image:title>91网功能介绍 - 视频教程库与工具集</image:title>
      <image:caption>91网功能介绍页面 - <?php echo $currentHost; ?></image:caption>
    </image:image>
  </url>
  <url>
    <loc><?php echo $currentOrigin; ?>/tutorial/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.9</priority>
    <video:video>
      <video:thumbnail_loc><?php echo $currentOrigin; ?>/images/video1.jpg</video:thumbnail_loc>
      <video:title>91网视频教程使用指南</video:title>
      <video:description>91网视频教程使用指南，帮助用户快速掌握平台功能 - <?php echo $currentHost; ?></video:description>
    </video:video>
  </url>
  <url>
    <loc><?php echo $currentOrigin; ?>/changelog/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc><?php echo $currentOrigin; ?>/download/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc><?php echo $currentOrigin; ?>/help/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc><?php echo $currentOrigin; ?>/tips/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc><?php echo $currentOrigin; ?>/faq/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
  <url>
    <loc><?php echo $currentOrigin; ?>/about/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
    <image:image>
      <image:loc><?php echo $currentOrigin; ?>/images/about.jpg</image:loc>
      <image:title>关于91网团队</image:title>
      <image:caption>91网团队介绍 - <?php echo $currentHost; ?></image:caption>
    </image:image>
  </url>
</urlset>
