モジュール「dashboard」と「admin」を備えたzendフレームワークアプリケーションがあります。「dashboard」がデフォルトです。別のモジュールにアクセスしようとすると、次のようなリクエストオブジェクトが表示されます
Zend_Controller_Request_Http Object
(
[_paramSources:protected] => Array
(
[0] => _GET
[1] => _POST
)
[_requestUri:protected] => /admin/application/show/
[_baseUrl:protected] => http://local.dashmonitor.us.com
[_basePath:protected] =>
[_pathInfo:protected] => /admin/application/show/
[_params:protected] => Array
(
[module] => admin
[controller] => application
[action] => get
[id] => show
)
[_rawBody:protected] =>
[_aliases:protected] => Array
(
)
[_dispatched:protected] => 1
[_module:protected] => admin
[_moduleKey:protected] => module
[_controller:protected] => application
[_controllerKey:protected] => controller
[_action:protected] => get
[_actionKey:protected] => action
)
私の実際のアクション名は「show」ですが、ここでは「get」に変わります。誰か助けてもらえますか?