建站资讯

关于首页带类似“/?bd_vid=11144806502376745206”这种参数无法访问的问题

来源:帝国CMS模板网 作者:忘爱。 时间:2026-07-05
浏览:29 收藏 点赞(0)
简介:http://域名/?bd_vid=11144806502376745206 进入404页面,该如何修改? 找到 lecms/control/parseurl_control.class.php文件,大概在821行代码如下: if(count($uarr) < 2) {core::error404();} 修改成: if(count($uarr) < 2) { $_GET['control'] = $_GET['action'] = 'inde
http://域名/?bd_vid=11144806502376745206

进入404页面,该如何修改?

找到 lecms/control/parseurl_control.class.php文件,大概在821行代码如下:

if(count($uarr) < 2) {core::error404();}

修改成:
if(count($uarr) < 2) {
  $_GET['control'] = $_GET['action'] = 'index';
  return true;
}

如果要直接重定向到首页,可以修改成:
if(count($uarr) < 2) {
  http_location('/', '301');
}
在线
客服