先分享一下在网上找的这教程,里面有一个小错误,我修改过来,下面给大家分享一下
DedeCMS 栏目绑定二级域名
第一步,在后台-->系统-->基本参数-->核心设置中,开启(是/否)支持多站点,开启此项后附件、栏目连接、arclist内容启用绝对网址: ,选择是;
第二步,在增加或编辑栏目的时候,在高级选项打开多站点支持:,选择是,(请一定检查是否启用了多站点!)填上你要使用的二级域名;
第三步,手动在空间中绑定二级域名到你的子目录;
第四步,这一步是最重要的,修改程序文件/include/helpers/channelunit.herper.php:
在函数function GetFileUrl中,修改第73行:
if($moresite==1){$articleUrl = preg_replace("/^".$sitepath.'/', '', $articleUrl);} |
if($moresite==1){$articleUrl = preg_replace("'^".$sitepath."'",'',$articleUrl);} |
if($GLOBALS['cfg_multi_site']=='Y'){if($siteurl=='') {$siteurl = $GLOBALS['cfg_basehost'];}if($moresite==1 ) {$reurl = preg_replace("/^".$sitepath."/", '', $reurl); |
$reurl = preg_replace("'^".$sitepath."'",'', $reurl); |