网站开通分站,分站绑定域名时,访问分站域名, 浏览器输入 主站域名/company 公司页面打不开,
原因 module/company/index.inc.php 第44行判断错误(版本不同位置不一样找一下)
修复原理为:增加当前访问分站域名判断即可解决
找到:if(strpos($DT_URL, $MOD['linkurl']) === false) dhttp(404);
替换为:if(strpos($DT_URL, $MOD['linkurl']) === false && !$city_domain) dhttp(404);