<?xml version="1.0" encoding="UTF-8"?>
<?php
header('Content-Type: application/xml; charset=utf-8');
$currentScheme = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') ? 'https' : 'http';
$currentHost = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost';
$baseUrl = $currentScheme . '://' . $currentHost;
$today = date('Y-m-d');
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
        xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">

  <!-- 首页 -->
  <url>
    <loc><?php echo $baseUrl; ?>/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
    <image:image>
      <image:loc><?php echo $baseUrl; ?>/images/hero-banner.jpg</image:loc>
      <image:title>91网 - 生活技能视频教程资讯聚合平台 | <?php echo $currentHost; ?></image:title>
      <image:caption>91网首页横幅 - 视频教程 · 生活视频 · 教程视频 | <?php echo $currentHost; ?></image:caption>
    </image:image>
  </url>

  <!-- 视频频道 -->
  <url>
    <loc><?php echo $baseUrl; ?>/video/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
    <video:video>
      <video:thumbnail_loc><?php echo $baseUrl; ?>/images/video-thumb-1.jpg</video:thumbnail_loc>
      <video:title>91网视频教程：家常菜视频演示全攻略</video:title>
      <video:description>91网精选生活视频演示，教程视频每日更新，视频教程全程讲解 | <?php echo $currentHost; ?></video:description>
      <video:content_loc><?php echo $baseUrl; ?>/video/</video:content_loc>
    </video:video>
  </url>

  <!-- 资讯频道 -->
  <url>
    <loc><?php echo $baseUrl; ?>/article/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>daily</changefreq>
    <priority>0.9</priority>
  </url>

  <!-- 专题频道 -->
  <url>
    <loc><?php echo $baseUrl; ?>/topic/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>

  <!-- 作者频道 -->
  <url>
    <loc><?php echo $baseUrl; ?>/author/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.7</priority>
  </url>

  <!-- 关于我们 -->
  <url>
    <loc><?php echo $baseUrl; ?>/about/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>

  <!-- 联系我们 -->
  <url>
    <loc><?php echo $baseUrl; ?>/contact/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>

  <!-- 搜索页 -->
  <url>
    <loc><?php echo $baseUrl; ?>/search/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>daily</changefreq>
    <priority>0.5</priority>
  </url>

</urlset>
