POST TIME:2020-03-29 00:08
網(wǎng)站地圖sitemap是網(wǎng)站一個重要的鏈接網(wǎng),但系統(tǒng)默認路徑是/data/sitemap.html,感覺有點長,不太利于網(wǎng)站的SEO。那么如何修改網(wǎng)站地圖的路徑呢。
第一步,請大家打開/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 這一個文件。
上一篇:讓DEDECMS支持FLV視頻