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