<?php
require_once __DIR__.'/includes/config.php';
header('Content-Type: application/xml; charset=utf-8');
$paths = array('/', '/redian/', '/guancha/', '/zhuanti/', '/video/', '/authors/', '/faq/', '/about/', '/contact/', '/article/shipin-jiaocheng/', '/article/hangye-guancha/', '/article/shenghuo-shipin/', '/article/neirong-cehua/', '/article/yidong-shipin/', '/article/chuangzuo-fangfa/');
echo '<?xml version="1.0" encoding="UTF-8"?>' . "
";
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "
";
foreach($paths as $p){
    echo '  <url><loc>'.htmlspecialchars(current_url($p), ENT_XML1, 'UTF-8').'</loc><lastmod>'.date('Y-m-d').'</lastmod><changefreq>daily</changefreq><priority>'.($p==='/'?'1.0':'0.8').'</priority></url>' . "
";
}
echo '</urlset>' . "
";
?>