zf2 はルーターでヒラキーをサポートしているため、ルートをツリーのように構築できます
あなたの状況では、たとえば、URLのlangに一致する親ルートを作成する必要があります
www.mydomain.com/en
または www.mydomain.com/fa
またはwww.mydomain.com/de
または....
その中で、子供たちは他の人のためにルートを書きます
コード例:
'langroute' => array(
'type' => 'Segment',
'options' => array(
'route' => '/[:lang]',
'defaults' => array(
'lang' => 'en',
),
'constraints' => array(
'lang' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
),
'may_terminate' => true,
'child_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
'aboutus' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/aboutus',
'defaults' => array(
'controller' => 'Application\Controller\Index',
'action' => 'aboutus',
),
),
),
),
langrout が en de fa または ... lang テキストと一致することがわかるように、この例では、子のルートが内部ページをチェックします。