路由錯誤,請檢查控制器目錄下是否存在該控制器/動作。
- /home/lshxcnoltskhtxocin/wwwroot/SpeedPHP/spFunctions.php on line 17
12.
spLaunch("router_prefilter");
13.
// 對將要訪問的控制器類進行實例化
14.
$handle_controller = spClass($__controller, null, $GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
15.
// 調(diào)用控制器出錯將調(diào)用路由錯誤處理函數(shù)
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
18.
eval($GLOBALS['G_SP']["dispatcher_error"]);
exit;
19.
}
20.
// 路由并執(zhí)行用戶代碼
21.
$handle_controller->$__action();
22.
// 控制器程序運行完畢,進行模板的自動輸出
- /home/lshxcnoltskhtxocin/wwwroot/index.php on line 27
22.
'suffix' => '.html', // 生成地址的結尾符
23.
),
24.
);
25.
26.
require(SP_PATH."/SpeedPHP.php");
27.
spRun();