4

如何覆盖 ./vendor/.../module_name/config/module.config.php 下的配置文件?

不,这个链接对我不起作用。我不确定为什么。

4

1 回答 1

8

尝试命名配置文件 filename.global.php 或 filename.local.php。

在 application.config.php 里面有这一行:

config/autoload/{,*.}{global,local}.php

关于 ZfcUser 模块和更改主路由。

zfcuser.global.php文件底部修改以下内容:

return array(
    'zfcuser' => $settings,
    'service_manager' => array(
        'aliases' => array(
            'zfcuser_zend_db_adapter' => (isset($settings['zend_db_adapter'])) ? $settings['zend_db_adapter']: 'Zend\Db\Adapter\Adapter',
        ),
    ),
    'router' => array(
        'routes' => array(
            'zfcuser' => array(
                'options' => array(
                    'route' => '/member',
                    'defaults' => array(
                        'controller' => 'zfcuser',
                        'action' => 'index',
                    ),
                ),
            )
        )
    )
);
于 2012-09-27T12:33:58.140 回答