Err: Controller 'sitemap.xmlController' is not exists!

1204.   * @param string $msg 错误信息
1205.   */
1206.  function _err_router($msg) {
1207.      Global $__module$__controller$__action;
1208.      if (!method_exists('BaseController''err404')) {
1209.          err($msg);
1210.      } else {
1211.          BaseController::err404($__module$__controller$__action$msg);
1212.      }
1213.  }
1214. 
320.  if (!is_available_classname($__controller)) {
321.      _err_router("Err: Controller '$controller_name' is not correct!");
322.  }
323. 
324.  if (!class_exists($controller_nametrue)) {
325.      _err_router("Err: Controller '$controller_name' is not exists!");
326.  }
327. 
328.  if (!method_exists($controller_name$action_name)) {
329.      _err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
330.  }
9.      exit('需要 PHP 8.0+,当前:' PHP_VERSION);
10.  }
11.  define('APP_DIR'$root);
12.  require APP_DIR '/protected/Version.php';
13.  require APP_DIR '/protected/lib/Common.php';
14.  require APP_DIR '/protected/lib/Speed.php';