我需要在ZF2中为这些域创建子域路由:
<?=$this->url('subdomain', array('subdomain' => 'sub'));?>
// sub.domain.ltd
<?=$this->url('subdomain/static/js', array('file' => 'jquery.js'));?>
// static.domain.ltd/js/jquery.js
我该怎么做?有什么想法吗?
第一条基本路线很简单:
'subdomain' => array(
'type' => 'hostname',
'options' => array(
'route' => ':subdomain.domain.ltd',
'constraints' => array(
'subdomain' => '[a-zA-Z][a-zA-Z0-9_-]*'
),
'defaults' => array(
'subdomain' => 'www',
),
),
'may_terminate' => true,
'child_routes' => array(),
),
但我必须在child_routes中编写什么来管理我的任务?