dedecms利用自定义页面功能制作sitemap.xml文件
2020-03-19 Umming 织梦dedecms 评论(0) 浏览(1738)
网站想使用sitemap.xml文件提交链接至搜索引擎,但是dede自带是不支持sitemap.xml格式的网站地图的,那就想办法利用自定义页面在根目录生成一个xml文件。
方法很简单,在后台自定义页面添加一个单页面,在模板目录添加一个sitemap.htm模板文档,文档内容用以下标签:
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>{dede:global.cfg_basehost/}/</loc> <lastmod> {dede:channelartlist typeid='top' } {dede:arclist row=1 titlelen=24 orderby=pubdate} [field:pubdate function=strftime('%Y-%m-%d',@me)/] {/dede:arclist}{/dede:channelartlist} </lastmod> <changefreq>daily</changefreq> <priority>1.0</priority> </url> {dede:channelartlist typeid='top' } <url> <loc>{dede:field name='typeurl'/}</loc> <changefreq>daily</changefreq> <priority>0.8</priority> </url> {dede:channel type='son' noself='true'} <url> <loc>[field:typelink/]</loc> <changefreq>daily</changefreq> <priority>0.8</priority> </url> {/dede:channel} {dede:arclist orderby=pubdate} <url> <loc>[field:arcurl/]</loc> <lastmod>[field:pubdate function=strftime('%Y-%m-%d',@me)/]</lastmod> <changefreq>monthly</changefreq> </url> {/dede:arclist} {/dede:channelartlist} </urlset>
然后在后台更新单页面文件就行了,弊端是每次更新文档都要手动更新!
标签: dedecms
本文链接:https://www.umming.com/dedecms/229.html
声明:本站信息由网友自行发布或来源于网络,真实性、合法性由发布人负责,请仔细甄别!本站只为传递信息,我们不做任何双方证明,也不承担任何法律责任。文章内容若侵犯你的权益,请联系本站删除!
也许你还会对下面的内容感兴趣:
发表评论: