私のアプリケーション翻訳では、言語構造を使用したいと考えています。
- サイト.com (英語)
- site.com/de/ (ドイツ語)
- site.com/fr/ (フランス)
- site.com/nl/ (オランダ語)
等..
'[az]{2}' のように Literal のルーター オプションを使用してこれを簡単に行うことができますが、サポートしていない言語を除外したいです。これを正規表現で修正する(サポートされている言語を追加する)が、何か(わからない)がうまくいかなかった。
前もって感謝します!
'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%',
),
),
),
),
),
),