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

1124.   * @param string $msg 错误信息
1125.   */
1126.  function _err_router($msg) {
1127.      Global $__module$__controller$__action;
1128.      if (!method_exists('BaseController''err404')) {
1129.          err($msg);
1130.      } else {
1131.          BaseController::err404($__module$__controller$__action$msg);
1132.      }
1133.  }
1134. 
284.  if (!is_available_classname($__controller)) {
285.      _err_router("Err: Controller '$controller_name' is not correct!");
286.  }
287. 
288.  if (!class_exists($controller_nametrue)) {
289.      _err_router("Err: Controller '$controller_name' is not exists!");
290.  }
291. 
292.  if (!method_exists($controller_name$action_name)) {
293.      _err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
294.  }
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';