织梦dedecms sitemap.html 路径修改方法 ,
网站地图对网站的seo还是蛮重要的,织梦的网站地图生成在data文件夹,十分的让人觉得不舒服,下面就讲下怎么修改生成路径 。
第一步:打开/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";
}
以上为sitemap路径的修改方法,另外,我们要做到满意的状态,我们还需要修改sitemap的模板,即/templets/plus/sitemap.htm,以及/include/sitemap.class.php 这一个文件。
(责任编辑:好模板) |