Gii を使用してモジュール (教育) を作成しました。このモジュールには、3 つのアクション ( index、read、write ) を持つ 1 つのコントローラー ( article ) があります。
次のようなモジュールにアクセスします。
http://example.com/index.php/education/article/index (正常に動作)
http://example.com/index.php/education/article/read (index アクションへのリダイレクト)
http://example.com/index.php/education/article/write (index アクションへのリダイレクト)
問題は、記事コントローラーでindexアクションにしかアクセスできないことです。他のアクションにアクセスしようとすると、常にindexアクションにリダイレクトされます。
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'
    ),
何が問題なのですか?