我想在没有.htaccess的情况下运行应用程序,我删除了相同的。现在当我点击n主页时,例如'localhost / testsite / index.php /'它的工作原理和相关链接url也能正常工作。但是当我尝试打开'localhost / testsite / index.php'时,它会给出以下错误消息。
发生404错误 网页未找到。 路由无法匹配请求的URL。
没有例外
当我打开'localhost / testsite /'时,主页正常,但相关的链接停止工作。我的应用程序module.config.php如下所示。
return array(
'router' => array(
'routes' => array(
'home' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/',
'defaults' => array(
'controller' => 'Application\Controller\Index',
'action' => 'index',
),
),
),
// The following is a route to simplify getting started creating
// new controllers and actions without needing to create a new
// module. Simply drop new controllers in, and you can access them
// using the path /application/:controller/:action
'application' => array(
'type' => 'Literal',
'options' => array(
'route' => '/application',
'defaults' => array(
'__NAMESPACE__' => 'Application\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(
),
),
),
),
),
),
),
'controllers' => array(
'invokables' => array(
'Application\Controller\Index' => 'Application\Controller\IndexController'
),
),
'view_manager' => array(
'display_not_found_reason' => true,
'display_exceptions' => true,
'doctype' => 'HTML5',
'not_found_template' => 'error/404',
'exception_template' => 'error/index',
'template_map' => array(
'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/index' => __DIR__ . '/../view/error/index.phtml',
),
'template_path_stack' => array(
__DIR__ . '/../view',
),
),
);
如果有人在zend 2.2中没有htaccess运行应用程序,请提供帮助。
答案 0 :(得分:1)
您可以添加通用路由以使斜杠可选,您可以使用段路径类型
执行此操作/**
* Generic Route
*/
'generic' => array(
'type' => 'segment',
'options' => array(
'route' => '[/:controller[/:action[/:id]]][/]', // allow trailing slash too [/]
'constraints' => array(
'__NAMESPACE__' => 'Application\Controller',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Index',
'action' => 'index',
),
),
),
答案 1 :(得分:0)
ZF2应用程序的起点位于public / index.php,它不在发布主机的根文件夹中,因此我们需要.htaccess(使用apache的mod_rewrite)将所有浏览器请求重定向到[/ ]到[public / index.php],如果你有任何其他模拟重定向的机制,你可以绕过.htaccess文件。