POST TIME:2018-09-18 00:23
dedecms是廣大站長非常喜歡的CMS建站系統(tǒng),其小巧方便而且功能強大,但是也有一些BUG,比如開啟多站點支持絕對網(wǎng)址后生成RSS錯誤的問題,
最終方法還是需要修改include目錄下的核心文件,方法如下:
打開系統(tǒng)文件: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"];