ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/netphim/code/sitemap/ |
<?php global $DB,$INFO; header('Content-type: text/xml'); echo '<?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="'.$INFO['home_url'].'sitemap.xsl"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">'; echo '<url> <loc>'.$INFO['home_url'].'phim-le/index.xml</loc> <lastmod>'.date('Y-m-d').'</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> <loc>'.$INFO['home_url'].'phim-bo/index.xml</loc> <lastmod>'.date('Y-m-d').'</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> <loc>'.$INFO['home_url'].'phim-chieu-rap/index.xml</loc> <lastmod>'.date('Y-m-d').'</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> <loc>'.$INFO['home_url'].'phim-hoat-hinh/index.xml</loc> <lastmod>'.date('Y-m-d').'</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> '; $query = $DB->query("SELECT name,slug FROM tb_genres ORDER BY `name` ASC"); while($row = $DB->fetch_row($query)) { echo '<url> <loc>'.$INFO['home_url'].'the-loai/'.$row['slug'].'.xml</loc> <lastmod>'.date('Y-m-d').'</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url>'; } $query = $DB->query("SELECT name,slug FROM tb_country ORDER BY `name` ASC"); while($row = $DB->fetch_row($query)) { echo '<url> <loc>'.$INFO['home_url'].'quoc-gia/'.$row['slug'].'.xml</loc> <lastmod>'.date('Y-m-d').'</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url>'; } echo '</urlset>'; ?>