这是公共的config.php文件
<?php
return array(
'APP_GROUP_LIST'=>'Index,Admin',
'DEFAULT_GROUP'=>'Index',
'APP_GROUP_MODE'=>1,
);
?>
我在Lib的Action文件夹里放了Admin和Index两个文件夹里面分别有IndexAction.class.php两个文件
class IndexAction extends Action{
public function index(){
echo "qiantai";
}
}
?>
就配置了这么多
预览时间就成:
无法加载模块:Index
错误位置
FILE: E:\wamp1\www\blogs\ThinkPHP\Common\functions.php LINE: 112
当'APP_GROUP_MODE'=>0时:
输出 :qiantai可以访问到了! 最佳答案