对于使用Zend框架的Social Engine 4。 我想在子域下显示用户配置文件。因此,http://domain.com/profile/username将为http://username.domain.com
我该怎么做?我已经有一个扩展程序,http://domain.com/profile/username到http://domain.com/username这是代码。
$route = array(
'user_profile' => array(
'route' => ':id/*',
'defaults' => array(
'module' => 'user',
'controller' => 'profile',
'action' => 'index'
),
'reqs' => array(
'id' => "\b.+"
)
)
);
Zend_Registry::get('Zend_Controller_Front')->getRouter()->addConfig(new Zend_Config($route));
是否可以将其更改为适用于子域?如果是,我该怎么办?
提前谢谢你。
答案 0 :(得分:0)
$hostnameRoute = new Zend_Controller_Router_Route_Hostname(
':id.'.$setting['siteurl'],
array(
'module' => 'user',
'controller' => 'profile',
'action' => 'index',
)
);
$plainPathRoute = new Zend_Controller_Router_Route_Static('');
$router->addRoute('user_profile', $hostnameRoute->chain($plainPathRoute));