route Error

8. 
<?php     }
9. 
<?php     syClass('sysession');
10. 
<?php     spLaunch("router_prefilter");
11. 
<?php     $handle_controller = syClass($__controller, null, $GLOBALS['G_DY']["controller_path"].'/'.$__controller.".php");
12. 
<?php     if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
13. 
<?php         syError('route Error');
14. 
<?php         exit;
15. 
<?php     }
16. 
<?php     $handle_controller->$__action();
17. 
<?php     if(FALSE != $GLOBALS['G_DY']['view']['auto_display']){
18. 
<?php         $__tplname = $__controller.$GLOBALS['G_DY']['view']['auto_display_sep'].
4. 
<?php require(XPOS_PATH."/sys.php");
5. 
<?php // 多语言:用检测到的模板目录覆盖
6. 
<?php if(!empty($GLOBALS['lang_template'])){
7. 
<?php     $GLOBALS['G_DY']['view']['config']['template_dir'] = APP_PATH.'/template/'.$GLOBALS['lang_template'];
8. 
<?php }
9. 
<?php spRun();