PHP Sitemap Nasıl Oluşturulur?
2
●184
- 14-06-2024, 17:30:04PHP Yazılımlar'da otomatik sitemap oluşturma nasıl yapılır, yardımcı olabilecek var mı?
- 14-06-2024, 17:33:09
<?php $export = '<?xml version="1.0" encoding="UTF-8"?>'; $export .= "\n"; $export .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'; $export .= "\n"; $export .= "<url>\n"; ..... foreach ($sayfalar as $sayfa) { $export .= "<url>\n"; $export .= " <loc><![CDATA[".$sayfaLinki."]]></loc>\n"; $export .= " <lastmod>".$dateNow."</lastmod>\n"; $export .= " <changefreq>weekly</changefreq>\n"; $export .= " <priority>0.80</priority>\n"; $export .= "</url>\n"; } ..... $export .= "</url>\n"; $export.="</urlset>"; header('Content-type: application/xml'); echo $export;