对于每个网站的优化,站点地图是必不可少的,但是DEDE的默认地图地址在data目录里面,一般情况都是放到网站根目录下,而且只要一建立网站就会在robots.txt里屏蔽掉这个目录,所以dedeseo必须要讲sitemap文件放到根目录下,以下是更改方法。
详细的步骤:
1,首先登录ftp,在根目录下建立rss文件夹
2,修改根目录下你的管理员文件夹(默认是dede)下的makehtml_map.php文件
将17行的$cfg_cmspath.”/data/sitemap.html”;
和22行的$cfg_cmspath.”/data/rssmap.html”;
data/ 去掉
3,修改根目录下include下面的arc.rssview.class.php和sitemap.class.php
在arc.rssview.class.php
将71行的$murl = $GLOBALS['cfg_cmspath'].”/data/rss/”.$this->TypeID.”.xml”;
data/ 去掉
在sitemap.class.php
将57行的$typelink = $GLOBALS['cfg_cmsurl'].”/data/rss/”.$row->id.”.xml”;
和94行的$typelink = $GLOBALS['cfg_cmsurl'].”/data/rss/”.$row->id.”.xml”;
data/ 去掉
转载请注明:天狐博客 » dede将地图sitemap生成到根目录