<?xml version="1.0" encoding="UTF-8"?>
<?php
$currentDomain = $_SERVER['HTTP_HOST'] ?? 'localhost';
$baseUrl = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? 'https' : 'http') . '://' . $currentDomain;
$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 $baseUrl; ?>/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
    <image:image>
      <image:loc><?php echo $baseUrl; ?>/assets/images/banner.jpg</image:loc>
      <image:title>91网生活美学视频官网</image:title>
    </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; ?>/assets/images/video-thumb-1.jpg</video:thumbnail_loc>
      <video:title>91网精选生活视频教程</video:title>
      <video:description>91网视频中心，汇聚200+支原创生活视频教程，美食视频、手工视频演示、生活Vlog等</video:description>
    </video:video>
  </url>
  <url>
    <loc><?php echo $baseUrl; ?>/about/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.7</priority>
  </url>
  <url>
    <loc><?php echo $baseUrl; ?>/contact/</loc>
    <lastmod><?php echo $today; ?></lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.6</priority>
  </url>
</urlset>
