标签:规则 格式 odi std 直接 文章 www 网站 16px
这个很简单,按照我下边提供的方法进行操作就可以了,我一直在用
第一步,登陆DedeCMS后台:核心 - 频道模型- 自由列表管理,点击添加列表;
参数按照下边的填写;
自由列表标题:【XML地图】
列表HTML存放目录:{cmspath}/
目录默认页名称:sitemap.xml
命名规则:{listdir}/sitemap.xml
列表模板:{style}/sitemap_xml.htm
每页记录数:30000
限定频道:普通文章
复制下边代码写成模版,命名为:sitemap_xml.htm
<?xml version="1.0" encoding="{dede:global.cfg_soft_lang/}"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>{dede:global.cfg_cmsurl/}</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‘} <url> <loc>[field:typelink /]</loc> <changefreq>daily</changefreq> <priority>0.9</priority> </url> {/dede:channel} {dede:channel type=‘son‘ typeid =‘9‘} <url> <loc>[field:typelink /]</loc> <changefreq>daily</changefreq> <priority>0.9</priority> </url> {/dede:channel} {dede:arclist row=‘20000‘ orderby=‘pubdate‘} <url> <loc>[field:arcurl/]</loc> <lastmod>[field:pubdate function=strftime(‘%Y-%m-%d‘,@me)/]</lastmod> <changefreq>0.7</changefreq> </url> {/dede:arclist} <url> <loc>http://127.0.0.1/tags.html</loc> <lastmod>daily</lastmod> <changefreq>0.8</changefreq> </url> {dede:tag getall=‘1‘ } <url> <loc>[field:link/]</loc> <lastmod>daily</lastmod> <changefreq>0.8</changefreq> </url> {/dede:tag} </urlset>
不需要的tag调用的话直接删掉就可以了
标签:规则 格式 odi std 直接 文章 www 网站 16px
原文地址:https://www.cnblogs.com/lcxin/p/11596028.html