演示 : http://www.rentipp.com/sitemap.xml
考虑到一般小站信息量不大,更新也不是特别频繁,所以时间精确到天就可以了
根据google指南,每个sitemap文本文件最多可以包含 50,000 个网址。所以文章最多调用50000个,如果你信息量大于50000,那多创建几个sitemap就可以了
和菜鸟分享,老鸟别笑我
后台新建自定义页面 :
<?='<?xml version="1.0" encoding="UTF-8"?>'?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>[!--news.url--]</loc> <changefreq>daily</changefreq> <priority>1.000</priority> </url> [e:loop={"select * from [!db.pre!]enewsclass order by classid limit 10000",10000,24,0}] <url> <loc><?=$public_r[newsurl]?><?=$bqr[classpath]?>/</loc> <changefreq>daily</changefreq> <priority>0.8000</priority> </url> [/e:loop] [e:loop={"select * from [!db.pre!]ecms_news order by newstime limit 50000",50000,24,0}] <url> <loc><?=$bqsr[titleurl]?></loc> <lastmod><?=format_datetime($bqr[newstime],'Y-m-d')?></lastmod> <priority>0.5000</priority> </url> [/e:loop] </urlset>
参考 : http://bbs.phome.net/showthread-13-85847-0.html
|