Dostum kodlattir.com için kullandığım sitemap.php dosyasını paylaşıyorum.
Yapman gereken

Htacces dosyana alttaki kodu yapıştır.
RewriteRule ^sitemap.xml$ sitemap.php [L,NC]


sitemap.php dosyan kendine göre düzenle en üstte veritabanını çağır

header("Content-type: text/xml\n\n");
echo ''."\n";
echo ''."\n".'

http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd " xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">'."\n";


?>


http://kodlattir.com
2017-09-28
hourly
1.0


$query = mysql_query("SELECT * FROM yazilarin_tablosu ORDER BY sayfa_tarih asc");
while($yazi = mysql_fetch_array($query)) {
$link = "http://kodlattir.com/".$yazi["sayfa_seo"]."-".$yazi["sayfa_id"].".html";
echo "

".$link."
daily
".date("Y-m-d\TH:i:sP", strtotime($yazi["sayfa_tarih"]))."
0.5
";
}

?>