路由错误,请检查控制器目录下是否存在该控制器/动作。

13.      spLaunch("router_prefilter");
14.      // 对将要访问的控制器类进行实例化
15.      $handle_controller spClass($__controllernull$GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
16.      // 调用控制器出错将调用路由错误处理函数
17.      if(!is_object($handle_controller) || !method_exists($handle_controller$__action)){
18.          eval($GLOBALS['G_SP']["dispatcher_error"]);
19.          exit;
20.      }
21. 
22.      //执行before_display注入函数
23.      spInject('before_display', array($handle_controller) );
88.      unset($in);
89.  }
90. 
91.  //dump($_SESSION);
92.  require(APP_PATH  DS "libs" DS "zxinit.php");
93.  spRun();
94. 
95.  ?>