0

我想在没有 .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 的应用程序,请提供帮助。

4

2 回答 2

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',
        ),
    ),
),
于 2013-07-12T11:26:54.950 回答
0

您的 ZF2 应用程序的起点位于 public/index.php 中,它不在您的发布主机的根文件夹中,因此我们需要 .htaccess(使用 apache 的 mod_rewrite)将您的所有浏览器请求重定向到 [/] 到 [ public/index.php],如果你有任何其他机制来模拟重定向,你可以绕过 .htaccess 文件。

于 2013-07-13T05:20:23.357 回答