对于蜘蛛只用xml格式的sitemap 网站地图能可以支持。所以如果想要更好被收录,最好要做下xml格式的sitemap 。网上很多方法,我试过这个可行也简单。
1.首先制作sitemap模板
新站一个记事本文件,把文件名改成sitemap.xml(记得后缀亦改),然后用记事本格式打开,粘贴下面的一段代码(*处用自己首页域名代替),将它上传至模板目录,比如templets/default中:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">
<url>
<loc>http://www.pdm.so/</loc>
<lastmod>{DEDE:arclist row=1 titlelen=24 orderby=pubdate}
[field:pubdate function=strftime('%Y-%m-%d',@me)/]
{/DEDE:arclist}</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
{DEDE:channel row='23' type='top'}
<loc>http://www.pdm.so[field:typelink /]</loc>
<changefreq>daily</changefreq>
<priority>0.8</priority>
{/DEDE:channel}
{DEDE:arclist row=2000 orderby=pubdate}
<loc>http://www.pdm.so[field:arcurl/]</loc>
<lastmod>[field:pubdate function=strftime('%Y-%m-%d',@me)/]</lastmod>
<changefreq>monthly</changefreq>
{/dede:arclist}
</urlset>
其中channel row是网站的频道数量,arclist row是文章数量(可以往一个上限值设),根据实际要求更改。将上面的http://www.pdm.so改成你网站的首选域名
2.生成sitemap.xml
前面所制作的仅是模板,现在通过dede后台的html更新>>主页更新向导来生成。在选择主页模板中填入模板路径,比如 default/sitemap.xml,在主页位置填入../sitemap.xml,然后点更新主页html即可。
通过以上简单的两步,google sitemap制作完成。上传的步骤在这里就不再啰嗦了。切记要选,(不保存当前选项)不然网站首页会被冲掉,不过冲掉也不要紧。只要选回之前的模板和主页位置现生成就可以还原。
点击看大图演示:
原文链接:https://www.f2er.com/xml/299766.html