我們知道網(wǎng)站地圖對(duì)一個(gè)網(wǎng)站來(lái)說(shuō)非常重要,至少在seo方面。那么織夢(mèng)默認(rèn)的sitemap路徑是在/data/sitemap.html。
那么我們?cè)趺葱薷倪@個(gè)路徑呢?
第一步:打開(kāi)/dede/makehtml_map.php,然后找到
代碼如下:
if($dopost=="site")
{
$murl = $cfg_cmspath."/data/sitemap.html";
$tmpfile = $cfg_basedir.$cfg_templets_dir."/plus/sitemap.htm";
}
比如你要修改在網(wǎng)站根目錄下,則可以把上面的代碼修改為:
代碼如下:
if($dopost=="site")
{
$murl = $cfg_cmspath."/sitemap.html";
$tmpfile = $cfg_basedir.$cfg_templets_dir."/plus/sitemap.htm";
}
以上為sitemap路徑的修改方法,另外,我們要做到滿意的狀態(tài),我們還需要修改sitemap的模板,即/templets/plus/sitemap.htm,以及/include/sitemap.class.php 這一個(gè)文件。