我正在尝试设置一个具有 2 个子域的应用程序,每个子域都有一个主机名路由和子路由,但没有运气。
有什么想法/例子吗?
谢谢
您可以使用名为“Hostname”的特定路由器类型(“Zend\Mvc\Router\Http\Hostname”类)。这是一个简单的例子:
'router' => array(
'routes' => array(
'example1' => array(
'type' => 'Hostname',
'options' => array(
'route' => ':subdomain.mydomain.com',
'constraints' => array(
'subdomain' => 'mysubdomain1',
),
'defaults' => array(
'controller' => 'MyModule1\Controller\MyFirstController',
'action' => 'index',
),
),
),
'example2' => array(
'type' => 'Hostname',
'options' => array(
'route' => ':subdomain.mydomain.com',
'constraints' => array(
'subdomain' => 'mysubdomain2',
),
'defaults' => array(
'controller' => 'MyModule2\Controller\MySecondController',
'action' => 'index',
),
),
),
),
),
我可能会将这个配置分成两部分,“example1”在我的第一个模块的配置中,“example2”在我的第二个模块的配置中。
您将在此页面上找到有关该路由器类型和其他类型的完整信息。