解决DEDE开启多站点后生成RSS错误的方法

时间:2014-09-13

最近发现织梦模板如果开启了多站点支持绝对网址后生成RSS会出现错误,经过一番研究,终于解决。

首先请大家打开系统文件:include/arc.rssview.class.php

找到

$this->TypeFields['typelink'] = $GLOBALS['cfg_basehost'].$this->TypeLink->GetOneTypeUrl( $this->TypeFields);

将其改为

$this->TypeFields['typelink'] = ($GLOBALS['cfg_multi_site']=="Y")?$this->TypeLink->GetOneTypeUrl( $this->TypeFields) : $GLOBALS['cfg_basehost'].$this->TypeLink->GetOneTypeUrl( $this->TypeFields);

这个是目录的 同样文章的也加一个是否开启了绝对地址的判断

再找到

$row["fullurl"] = $GLOBALS["cfg_basehost"].$row["arcurl"];

然后改为

$row["fullurl"] = ($GLOBALS['cfg_multi_site']=="Y")?$row["arcurl"]: $GLOBALS["cfg_basehost"].$row["arcurl"];

至此,一切OK。

上一条:实现DedeCms 5.7代码高亮的方法 下一条:DEDECMS的data目录搬迁实战

相关文章

最新文章