📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
paketsatisscripti.demodesign.com.tr
📝
sitemap.php
← Geri Dön
<?php header('Content-type: Application/xml; charset="utf8"', true); echo ' <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>'.rtrim($site,"/").'</loc> <lastmod>'.date("Y")."-".date("m")."-".date("d")."T".date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>1.0000</priority> </url> '; $urll=mysqli_query($baglanti,"select * from ayar_url where indexleme='1' ORDER BY id ASC"); while($url=mysqli_fetch_array($urll)) { echo ' <url> <loc>'.$site.$url["url"].'</loc> <lastmod>'.date("Y")."-".date("m")."-".date("d")."T".date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url> '; } $urll=mysqli_query($baglanti,"select * from platform where durum='1' ORDER BY id ASC"); while($url=mysqli_fetch_array($urll)) { echo ' <url> <loc>'.$site.$url["url"].'</loc> <lastmod>'.date("Y")."-".date("m")."-".date("d")."T".date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url> '; } $urll=mysqli_query($baglanti,"select * from kategori where durum='1' ORDER BY id ASC"); while($url=mysqli_fetch_array($urll)) { $plat=platform($url["platform"]); echo ' <url> <loc>'.$site.$plat["url"]."/".$url["url"].'</loc> <lastmod>'.date("Y")."-".date("m")."-".date("d")."T".date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url> '; } $urll=mysqli_query($baglanti,"select * from blog ORDER BY id ASC"); while($url=mysqli_fetch_array($urll)) { echo ' <url> <loc>'.$site.$blog["url"]."/".$url["url"].'</loc> <lastmod>'.date("Y")."-".date("m")."-".date("d")."T".date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url> '; } echo ' </urlset>'; ?>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula