App/Conf/config.php
<?php
return array(
//'配置项'=>'配置值'
'APP_GROUP_LIST'=>'Index,Admin',
'DEFAULT_GROUP'=>'Index',
'APP_GROUP_MODE'=>1,
'APP_GROUP_PATH'=>'Modules',
);
?>
******************************************************
App/Modules/Admin/Action/indexAction.class.php
<?php
Class IndexAction extends Action{
Public function index(){
echo 111;
}
}
?>
*****************************************************
下面贴出错误信息
PS:我的版本是3.1.3
最佳答案