Merhaba benim sitemde kullandığım bir sitemap var. İstersen aşağıdaki koddan faydalanabilirsin. ayar.php sadece mysql bağlantısı için. kodları sitemap.php olarak kaydet ve düzenle.

sitemap.php
<?php
include("ayar.php");

header("Content-type: text/xml\n\n");
echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";
echo '<!-- generated-on="'.date("d M Y H:i").'" -->'."\n".'

<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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">'."\n";


?>

<url>
  <loc>http://www.siteadi.com/index.php</loc>
  <changefreq>always</changefreq>
  <priority>1.0</priority>
</url>
<?php

$query = mysql_query("SELECT ID FROM tablo_adi ORDER BY ID ASC");
while($yazi = mysql_fetch_array($query)) {
$link = "http://www.siteadi.com/konu.php?id=".$yazi["ID"]."";
echo "
 <url>
  <loc>".$link."</loc>
  <changefreq>always</changefreq>
  <priority>0.9</priority>
</url>";
}

?>
</urlset>