<?php
// sitemap.php
header("Content-type: text/xml");
require 'config.php';

echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';

// 首页
echo '<url><loc>https://www.yourdomain.com/</loc><lastmod>' . date('Y-m-d') . '</lastmod><priority>1.0</priority></url>';

// 文章页
$stmt = $pdo->query("SELECT id, created_at FROM articles");
while ($row = $stmt->fetch()) {
    $loc = 'https://www.yourdomain.com/article.php?id=' . $row['id'];
    $date = date('Y-m-d', strtotime($row['created_at']));
    echo "<url><loc>$loc</loc><lastmod>$date</lastmod><priority>0.8</priority></url>";
}

echo '</urlset>';
?>