请求的控制器 css 没有定义

详细错误原因:

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

调用参数 :
Array
(
    [controller] => css
    [action] => style.css
)

解决:

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

Controller/css.php

[Copy To Clipboard]


<?php

// Controller/css.php

class Controller_css extends FLEA_Controller_Action
{

    function actionstylecss()
    {

    }
}


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


Filename: /var/www/vhosts/acty-b.net/subdomains/hp/httpdocs/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('css', 'stylecss', 'Controller_css')

Filename: /var/www/vhosts/acty-b.net/subdomains/hp/httpdocs/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: /var/www/vhosts/acty-b.net/subdomains/hp/httpdocs/index.php [12]
#1 FLEA::runMVC()