我是 Yii 的新手,很抱歉有人帮我解释为什么控制器employeeController.php 没有被调用,我检查并设置了许多文件权限等,
这是我的网址http://dxb.softmatics.com:81/erp/index.php/employe/index
Controller : / ......... 用于板载控制器.... /
class employeController extends Controller{
/**
* Declares class-based actions.
*/
public function actions()
{
return array(
'page'=>array(
'class'=>'CViewAction',
),
);
}
/**
* for index page
*/
public function actionIndex()
{
echo 'in index';
exit;
}
}//...end of class
如果还有其他事情,我会向您展示我的代码,例如配置等