📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
firmarehberiv1.demodesign.com.tr
📝
sitemap.php
← Geri Dön
<?php define('INC', true); require_once("include/functions.php"); header('Content-type: text/xml'); echo '<?xml version="1.0" encoding="UTF-8"?>'; echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">'; $sayfa = $db->table('dbo_sayfalar')->orderBy('SyfID','desc')->getAll(); foreach($sayfa as $sayfaget){ echo " <url> <loc>".$site."/sayfa/".$sayfaget->SyfID.'/'.seo($sayfaget->sayfa_baslik)."/</loc> <lastmod>".date("Y")."-".date("m")."-".date("d")."T".date("H:i:s")."+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url>"; } $blog = $db->table('dbo_blog')->orderBy('BlogID','desc')->getAll(); foreach($blog as $blogget){ echo " <url> <loc>".$site."/haber/".$blogget->BlogID.'/'.seo($blogget->blog_baslik)."/</loc> <lastmod>".date("Y")."-".date("m")."-".date("d")."T".date("H:i:s")."+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url>"; } $etkinlik = $db->table('dbo_etkinlik')->orderBy('EtkinlikID','desc')->getAll(); foreach($etkinlik as $etkget){ echo " <url> <loc>".$site."/etkinlik/".$etkget->EtkinlikID.'/'.seo($etkget->etkinlik_adi)."/</loc> <lastmod>".date("Y")."-".date("m")."-".date("d")."T".date("H:i:s")."+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url>"; } $firma = $db->table('dbo_firma')->orderBy('FirmaID','desc')->getAll(); foreach($firma as $firmaget){ echo " <url> <loc>".$site."/firma/".$firmaget->FirmaID.'/'.seo($firmaget->firma_adi)."/</loc> <lastmod>".date("Y")."-".date("m")."-".date("d")."T".date("H:i:s")."+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url>"; } $ilan = $db->table('dbo_ilan')->orderBy('id','desc')->getAll(); foreach($ilan as $ilanget){ echo " <url> <loc>".$site."/ilan/".$ilanget->id.'/'.seo($ilanget->ilanbaslik)."/</loc> <lastmod>".date("Y")."-".date("m")."-".date("d")."T".date("H:i:s")."+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url>"; } $eleman = $db->table('dbo_ilan_eleman')->orderBy('IlanPerID','desc')->getAll(); foreach($eleman as $elemanget){ echo " <url> <loc>".$site."/eleman/".$elemanget->IlanPerID.'/'.seo($elemanget->ilan_baslik)."/</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