私はZF2に非常に興味があり、グローバルルーターの設定方法がわかりません。モジュールレベルで設定する方法を知っています:
http://packages.zendframework.com/docs/latest/manual/en/user-guide/routing-and-controllers.html言います:
特定のアクションへの URL のマッピングは、モジュールの module.config.php ファイルで定義されているルートを使用して行われます。アルバム アクションのルートを追加します。これは、新しいコードがコメントされた、更新された構成ファイルです。
// The following section is new and should be added to your file
'router' => array(
'routes' => array(
'album' => array(
'type' => 'segment',
'options' => array(
'route' => '/album[/:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
),
),
アプリケーション全体のデフォルトの動作を設定する方法はありますか? または、各モジュールでconfingする必要がありますか? config/application.config.phpは論理的な場所です。それはどこかに文書化されていますか?