Zend ( http://www.youtube.com/watch?feature=player_embedded&v=EerB9bTvqrY ) のチュートリアルに従っていますが、プロジェクトに新しいモジュールを追加すると、そこに移動できません。このチュートリアルの手順は次のとおりです。正しくない?
基本的に、Zend Studio で新しいモジュールを Zend Framework プロジェクトに追加すると、そこに移動できなくなります。新しいモジュールは「取引」と呼ばれます。localhost/dealproject/deals に移動すると、エラー 404 が表示されます。localhost/dealproject/ に移動すると、zend スケルトン アプリケーション ページが正しく読み込まれます。
ご協力いただきありがとうございます。
module.config.php
<?php
return array(
'controllers' => array(
'invokables' => array(
'Deals\Controller\Deals' => 'Deals\Controller\DealsController',
),
),
'router' => array(
'routes' => array(
'deals' => array(
'type' => 'Literal',
'options' => array(
// Change this to something specific to your module
'route' => '/deals',
'defaults' => array(
// Change this value to reflect the namespace in which
// the controllers for your module are found
'__NAMESPACE__' => 'Deals\Controller',
'controller' => 'Deals',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
// This route is a sane default when developing a module;
// as you solidify the routes for your module, however,
// you may want to remove it and replace it with more
// specific routes.
'default' => array(
'type' => 'Segment',
'options' => array(
'route' => '/[:controller[/:action]]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
),
),
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'Deals' => __DIR__ . '/../view',
),
),
);