dedecms 网站地图sitemap路径修改方法

互联网 - 08-09

dede 网站地图的默认路径是 http://yourdomain/data/sitemap.html ,我们的目标是将其修改为 http://yourdomain/sitemap.html 的形式,怎么做呢?

找到代码:

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";