我有 2 个名为UserController和AdminController的控制器,它们都有 index 方法。index 方法呈现面板视图。它们都在 localhost 中工作,但是在上传到 linux 服务器后AdminController不起作用,并且只呈现白页而没有任何错误。这是我在config/main.php中的 urlmanager :
'urlManager'=>array(
'urlFormat'=> 'path',
'showScriptName' => false,
'rules' => array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
有什么调试建议吗?