在URL中路由Zend Framework 2语言

时间:2013-05-22 12:22:34

标签: url parameters routes zend-framework2 translation

对于我的应用程序翻译,我想使用一种语言结构,例如:

  • site.com(英文)
  • site.com/de/(德语)
  • site.com/fr/(法国)
  • site.com/nl/(荷兰语)

等。

我可以使用Literal中的路由器选项轻松完成此操作,作为'[a-z] {2}',但我想要排除我不支持的语言,例如site.com/it/如果它不受支持我想要一个404.我试图用正则表达式修复它(添加支持的语言)但是(我不知道)出错了。

提前致谢!

'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Literal',
                'options' => array(
                    'route'    => '/',
                    'defaults' => array(
                        'controller' => 'Application\Controller\Index',
                        'action'     => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'language' => array(
                        'type'    => 'Regex',
                        'options' => array(
                            'regex'    => '/(?<lang>(de|fr|nl))?',
                            'defaults' => array(
                                'lang' => 'en', //default
                            ),
                            'spec' => '/%lang%',
                        ),
                    ),
                ),
            ),
        ),
    ),

1 个答案:

答案 0 :(得分:6)

我认为你的正则表达式需要

'regex'    => '/(?<lang>(de|fr|nl)?)'

你可以使用Segment路线和适当的约束......

'router' => array(
    'routes' => array(
        'home' => array(
            'type' => 'Literal',
            'options' => array(
                'route'    => '/',
                'defaults' => array(
                    'controller' => 'Application\Controller\Index',
                    'action'     => 'index',
                ),
            ),
            'may_terminate' => true,
            'child_routes' => array(
                'language' => array(
                    'type'    => 'Segment',
                    'options' => array(
                        'route' => '[/:lang]',
                        'defaults' => array(
                            'lang' => 'en', //default
                        ),
                        'constraints' => array(
                            'lang' => '(en|de|fr|nl)?',
                        ),
                    ),
                ),
            ),
        ),
    ),
),