首页 >

织梦DedeCMS地图sitemap.html更改路径和模板

文章介绍

织梦默认的网站地图生成后的路径是/data/sitemap.html

织梦DedeCMS地图sitemap.html更改路径和模板

但是做为seo来考虑会认为sitemap.html这个文件放在根目录会更好。

那么如何实现这个呢?

方法如下:

第一步:打开/dede/makehtml_map.php

if($dopost==”site”)

{

$murl = $cfg_cmspath.”/data/sitemap.html”; //内容来自织梦Dedecms模板

$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.html放在根目录的的任务了

第二步:如何要更改sitemap.html的显示方式,及相关的样式,那在哪里更改

1 | DedeCMS中sitemap.html的模板文件在\templets\plus\sitemap.htm,可以在这个文件更改相关的样式标题什么的。

2 | 更改sitemap的显示方式,这个时候就要了解{dede:global name=’maplist’/}标签了

这个标签,简单点说,你在makehtml_map.php中定义一个$seostudy = “原创小站”;,那么在模板中可以使用{dede:global name=’seostudy’}来获得这个变量的值,当然这个文件的获取值的函数很多都是来自文件/include/sitemap.class.php,所以在更改sitemap.html的时候把这几个文件了解后就很容易了。


织梦DedeCMS地图sitemap.html更改路径和模板
  • 织梦DedeCMS源码如何禁止会员发布文章内容带超链接
  • 织梦DedeCMS源码如何禁止会员发布文章内容带超链接 | 织梦DedeCMS源码如何禁止会员发布文章内容带超链接 ...

    织梦DedeCMS地图sitemap.html更改路径和模板
  • 织梦DedeCMS模板标签{dede:type}调用父级分类
  • 织梦DedeCMS模板标签{dede:type}调用父级分类 | 织梦DedeCMS模板标签{dede:type}调用父级分类 ...

    织梦DedeCMS地图sitemap.html更改路径和模板
  • 织梦DedeCMS更换模板教程
  • 织梦DedeCMS更换模板教程 | 织梦DedeCMS更换模板教程 ...