exception 404: No controller /sitemap.xml

750        return self::$_controllers[$module][$name];
751    }
752    $prefix 'C67\\controller\\'SYSTEM_67 .'\\'. ($module ucfirst($module) .'\\' '');
753    $uc ucfirst($name);
754    $cls $prefix $uc;
755    if(!class_exists($cls)){
756        $cls $prefix .'_'$uc;
757        if(!class_exists($clsfalse)){
758            //兼容, 纯数字:_360, 关键字:_Interface
759            throw new Exception('No controller '$module .'/'$name404);
760        }
761    }
762
763    self::$_controllers[$module][$name] = new $cls($MODULE$name);
764    return self::$_controllers[$module][$name];
765}
766
767static public function init_db($key$new false){
768    if(isset(self::$dbs[$key]) && !$new) return self::$dbs[$key];