菜鸡源码,专注精品下载!
当前位置:首页 > 建站教程 > 建站知识

PHP生成Sitemap网站地图代码

发布时间:2024-01-05  栏目:建站知识   浏览:   分类:php教程 sitemap php代码 sitemap教程 代码生成

```php <?php header("Content-Type: text/xml; charset=utf-8"); echo '<?xml version="1.0" encoding="UTF-8"?>'; echo ''; // 获取网站首页 $home_url = "https://www.example.com"; echo ""; echo "$home_url"; echo "2022-01-01T00:00:00+00:00"; echo "daily"; echo "1.0"; echo ""; // 获取其他页面 $pages

网站地图生成代码

<?php$dom=newDOMDocument("1.0","utf-8");header("Content-Type:text/xml");$root=$dom->createElement("urlset");$dom->appendChild($root);for($i=0;$i<=998;$i++){$track=$dom->createElement("url");$root->appendChild($track);$loc=$dom->createElement("loc");$track->appendChild($loc);$lastmod=$dom->createElement("lastmod");$track->appendChild($lastmod);$changefreq=$dom->createElement("changefreq");$track->appendChild($changefreq);$priority=$dom->createElement("priority");$track->appendChild($priority);$text=$dom->createTextNode('http://www.baidu.com/'.(mt_rand(1,20)).($i+1).'.html');$loc->appendChild($text);$date=date("Y-m-d",strtotime('-'.rand(0,10).'day'));$text=$dom->createTextNode($date);$lastmod->appendChild($text);$text=$dom->createTextNode(daily);$changefreq->appendChild($text);$text=$dom->createTextNode(0.8);$priority->appendChild($text);}$dom->save("sitemap.xml");exit;

代码说明

hangefreq:页面内容更新频率。
lastmod:页面最后修改时间
loc:页面永久链接地址
priority:相对于其他页面的优先权

这样就可以在你的网站根目录下生成sitemap.xml文件

相关专题

相关文章

    无相关信息
评论
建站知识
建站知识
使用技巧
调试安装
运营推广