織夢(mèng)默認(rèn)的網(wǎng)站地圖生成后的路徑是/data/sitemap.html
但是做為seo來考慮會(huì)認(rèn)為sitemap.html這個(gè)文件放在根目錄會(huì)更好。
那么如何實(shí)現(xiàn)這個(gè)呢?
方法如下:
第一步:打開/dede/makehtml_map.php
if($dopost=="site")
{
$murl = $cfg_cmspath."/data/sitemap.html"; //內(nèi)容來自織夢(mèng)模板團(tuán)
$tmpfile = $cfg_basedir.$cfg_templets_dir."/plus/sitemap.htm";
}
更改成為
if($dopost=="site")
{
$murl = $cfg_cmspath."/sitemap.html";
$tmpfile = $cfg_basedir.$cfg_templets_dir."/plus/sitemap.htm";
}
這樣就實(shí)現(xiàn)了sitemap.html放在根目錄的的任務(wù)了
第二步:如何我們要更改sitemap.html的顯示方式,及相關(guān)的樣式,那在哪里更改
1、dedecms中sitemap.html的模板文件在\templets\plus\sitemap.htm,我們可以在這個(gè)文件更改相關(guān)的樣式標(biāo)題什么的。
2、更改sitemap的顯示方式,這個(gè)時(shí)候我們就要了解{dede:global name='maplist'/}標(biāo)簽了
這個(gè)標(biāo)簽,簡(jiǎn)單點(diǎn)說,你在makehtml_map.php中定義一個(gè)$seostudy = "原創(chuàng)小站";,那么在模板中可以使用{dede:global name='seostudy'}來獲得這個(gè)變量的值,當(dāng)然這個(gè)文件的獲取值的函數(shù)很多都是來自文件/include/sitemap.class.php,所以我們?cè)诟膕itemap.html的時(shí)候把這幾個(gè)文件了解后就很容易了。