アプリケーションは xampp 環境では正常に動作していますが、ユニット テスト サーバーにアップロードするとエラーが発生します。
見つかりません
要求された URL /application/public/login がこのサーバーで見つかりませんでした。
module.config.php
'router' => array(
'routes' => array(
'login' => array(
'type' => 'segment',
'options' => array(
'route' => '/login',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'loginController',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'process' => array(
'type' => 'Segment',
'options' => array(
'route' => '/[:action]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
),
),
),
),
),
'logout' => array(
'type' => 'segment',
'options' => array(
'route' => "/logout",
'defaults' => array(
'controller' => 'loginController',
'action' => 'logout'
)
)
),
),
),