自动生成sitemap地图php代码
时间:2024年05月07日
/来源:网络
/编辑:佚名
自动生成sitemap地图php代码,无需调用数据库,适用于百度站长提交。
需要php的环境,本代码是通过php运行的。
自动生成sitemap代码如下:
<?php
$dom = new DOMDocument("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;
代码参数说明
changefreq:页面内容更新频率。
lastmod:页面最后修改时间
loc:页面永久链接地址
priority:相对于其他页面的优先权
百度站长的抓取频率自己设置,然后吧这个链接加入到你的宝塔计划任务定时访问url
这样他就会自动帮你更新了,这个当然你也可以自己修改一下自己需要的参数或URL
具体方法请参考百度,78模板网已经与百度达成了深度合作,问他都会答你的
需要php的环境,本代码是通过php运行的。
自动生成sitemap代码如下:
<?php
$dom = new DOMDocument("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;
代码参数说明
changefreq:页面内容更新频率。
lastmod:页面最后修改时间
loc:页面永久链接地址
priority:相对于其他页面的优先权
百度站长的抓取频率自己设置,然后吧这个链接加入到你的宝塔计划任务定时访问url
这样他就会自动帮你更新了,这个当然你也可以自己修改一下自己需要的参数或URL
具体方法请参考百度,78模板网已经与百度达成了深度合作,问他都会答你的
新闻资讯 更多
- 【建站知识】自动生成sitemap地图php代码05-07
- 【建站知识】防止别人扒自己的网页方法05-07
- 【建站知识】解除宝塔面板强制绑定手机号教程思路05-07
- 【建站知识】屏蔽所有人访问宝塔控制面板IP地址05-07
- 【建站知识】站点强制https 浏览器显示绿锁05-07
- 【建站知识】PHP百度推送代码(泛目录版)05-07
- 【建站知识】php源码混淆加密代码05-06
- 【建站知识】解决新版本2020零距离站群首页乱码问题05-01