我的应用程序在 xampp 环境中正常运行,但在上传到单元测试服务器后遇到错误。
未找到
在此服务器上找不到请求的 URL /application/public/login。
模块.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'
)
)
),
),
),