織夢dedecms5.7 生成百度地圖sitemap和谷歌地圖site
導讀:織夢技術織夢技術因為我的新網站 交友吧 收 錄收錄的特別慢,之前dede系統用的sitemap是直接用的插件百度新聞因為看到一篇日志,那個鬼說這樣有用,今天仔細查了下,后來發現織夢模板下載織夢cms模板。
因為我的新網站 交友吧 收 錄收錄的特別慢,之前dede系統用的sitemap是直接用的插件百度新聞…因為看到一篇日志,那個鬼說這樣有用,今天仔細查了下,后來發現這個生成的 xml現在已經不符合百度sitemap的要求了,而且還是只適用于news.baidu.com這個網站…瞬間感覺無比蛋疼,然后今天就研究了下怎么用 dedecms生成正確的sitemap文件
好了 直接看步驟吧.
1.dedecms 生成里面有一個生成地圖,原來這個生成的是html,不是我們想要的,而且只生成欄目的,沒文章,但是這個界面我們可以方便操作,所以就在這上面來進行修改
2.在 /templets/plus 目錄下 找到兩個文件sitemap.htm 和 rssmap.htm,前者我們當中是百度的sitemap 后者我們當中谷歌的sitemap
3.
修改sitemap.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_basehost/}</loc> <changefreq>always</changefreq> <priority>1.0</priority> </url> {dede:arclist row='10000' orderby='pubdate'} <url> <loc>[field:global.cfg_basehost/][field:arcurl/]</loc> <lastmod>[field:pubdate function="GetDateMK(@me)"/]</lastmod> </url> {/dede:arclist} {dede:channelartlist row='50'} <url> <loc>{dede:global.cfg_basehost/}{dede:field name='typeurl'/}</loc> <lastmod>{dede:php}echo date('Y-m-d');{/dede:php}</lastmod> </url> {dede:channel type='son' row='8'} <url> <loc>[field:global.cfg_basehost/][field:typelink/]</loc> <lastmod>[field:id runphp="yes"]@me=date('Y-m-d');[/field:id]</lastmod> </url> {/dede:channel} {/dede:channelartlist} </urlset> 修改rssmap.htm:把原來的代碼全部刪除 然后用下面的代碼 <?xml version='1.0' encoding='UTF-8'?> <urlset xmlns='http://www.google.com/schemas/sitemap/0.84'> {dede:arclist typeid='0' } <url><loc>[field:global.cfg_basehost/][field:arcurl/]</loc><lastmod>[field:pubdate function="MyDate('Y-m-d',@me)"/]</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url> {/dede:arclist} {dede:channelartlist row=50} <url><loc>{ded織夢網站模板e:global.cfg_basehost/}{dede:field name='typeurl'/}</loc><lastmod>{dede:php}echo date('Y-m-d');{/dede:php}</lastmod><changefreq>daily</changefreq>&織夢模板網站lt;priority>1.0</priority></url> {dede:channel type='son' row='8'} <url><loc>[field:global.cfg_basehost/][field:typelink/]</loc><lastmod>[field:id runphp="yes"]@me=date('Y-m-d');[/field:id]</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url> {/dede:channel} {/dede:channelartlist} </urlset>聲明: 本文由我的SEOUC技術文章主頁發布于:2023-07-19 ,文章織夢dedecms5.7 生成百度地圖sitemap和谷歌地圖site主要講述地圖,標簽,織夢網站建設源碼以及服務器配置搭建相關技術文章。轉載請保留鏈接: http://www.bifwcx.com/article/web_30132.html