我是Zend Framework的新用戶,我有一個項目要做。問題是我無法配置我的路線到第二個控制器。第一個控制器(索引)完美地工作,但不是新的。在ZF2上創建控制器
我用zftool創建了模塊,所以我有一個名爲「Medicaments」的模塊。當我嘗試使用以下URL localhost/project_zend/public(或localhost/project_zend/public/medicaments)訪問我的項目時,它工作正常,我到達我的IndexController indexAction。但是當我嘗試訪問我的新控制器「ConfigurationController(存在於/ modules/Medicaments/Controller /中)時,我到達一個404頁面,並說」控制器詢問無法發送請求。「並且我的觀點表明。所使用的控制器是「藥品/控制器/索引」,而不是「藥品/控制器/配置」
這裏是我的路由器配置(/modules/Medicaments/config/module.config.php)文件:
'router' => array(
'routes' => array(
'home' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/',
'defaults' => array(
'controller' => 'Medicaments\Controller\Index',
'action' => 'index',
),
),
),
'medicaments' => array(
'type' => 'segment',
'options' => array(
'route' => '/medicaments[/:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'__NAMESPACE__' => 'Medicaments\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'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(
),
),
),
),
),
'configuration' => array(
'type' => 'segment',
'options' => array(
'route' => '/configuration[/:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Configuration',
'action' => 'index',
),
),
),
),
),
謝謝您的幫助
有沒有必要在您的網址中使用「/ public」 – cptnk