在織夢DedeCMS網站中一般都會有地圖,網站地圖對網站的優化來說是非常重要的,織夢地圖默認的存放地址是/data/sitemap.html,我們也都知道data目錄是要禁止的,所以sitemap的路徑必須要修改,這樣才能不會影響到網站的優化。
打開/dede/makehtml_map.php
找到
if($dopost=="site")
{
$murl = $cfg_cmspath."/data/sitemap.html";
$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";
}