请求的控制器 index 没有定义

详细错误原因:

您请求访问控制器 index 的动作 index
但控制器 index 对应的类 Controller_Index 没有定义。

调用参数 :
Array
(
    [controller] => index
    [action] => index
)

解决:

请检查是否创建了 Controller_Index 类的定义文件:

Controller/Index.php

[Copy To Clipboard]


<?php

// Controller/Index.php

class Controller_Index extends FLEA_Controller_Action
{

    function actionindex()
    {

    }
}


Exception: FLEA_Exception_MissingController
Message: 缺少控制器 "index".


Filename: /usr/home/hmu033051/htdocs/lib/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('index', 'index', 'Controller_Index')

Filename: /usr/home/hmu033051/htdocs/lib/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: /usr/home/hmu033051/htdocs/index.php [25]
#1 FLEA::runMVC()