前言
网站地图,对于做seo来说是非常重要的,可是织梦系统生成的网站地图默认不是生成在网站根目录的,这样不利于蜘蛛的发现,从不利于seo优化。岛主整理了一下让织梦网站地图生成在根目录的开发教程。
开发教程
1、打开 /dede/makehtml_map.php,找到以下代码
$murl = $cfg_cmspath."/data/sitemap.html";
修改为:
$murl = $cfg_cmspath."/sitemap.html";
接着,继续找到:
$murl = $cfg_cmspath."/data/rssmap.html";
修改为:
$murl = $cfg_cmspath."/rssmap.html";
2、打开 /include/arc.rssview.class.php,找到
$murl = $GLOBALS['cfg_cmspath']."/data/rss/".$this->TypeID.".xml"
修改为:
$murl = $GLOBALS['cfg_cmspath']."/".$this->TypeID.".xml"
3、打开 /include/sitemap.class.php,找到
$typelink = $GLOBALS['cfg_cmsurl']."/data/rss/".$row->id.".xml";
修改为:
$typelink = $GLOBALS['cfg_cmsurl']."/".$row->id.".xml";
完成。