我使用 Gii创建了一个模块(教育)。该模块有一个控制器(文章),其中包含三个操作(索引、读取、写入)。
我访问模块是这样的:
http://example.com/index.php/education/article/index (工作正常)
http://example.com/index.php/education/article/read (重定向到索引操作)
http://example.com/index.php/education/article/write (重定向到索引操作)
所以问题是我只能访问文章控制器中的索引操作。当我尝试访问任何其他操作时,它总是重定向到索引操作。
我在 config/main 中有以下条目:
'modules'=>array(
// uncomment the following to enable the Gii tool
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'password',
'ipFilters'=>array('127.0.0.1','::1'),
),
'education'
),
知道有什么问题吗?