我想从自定义URL动态路由到特定的操作和控制器。例如,我有以下表格:
controller | action | alias
=============================
home | index | myalias
我想在路由之前添加一些功能(我不确定)将检查URL,以及它是否
my-site.com/myalias
然后应该使用controller home 和action index 而不重定向。只需打开该操作和控制器,而无需更改URL。有可能实现吗?
到目前为止,我有这样的事情:
public function customRoutes(MvcEvent $e)
{
$dbAdapter = $e->getApplication()->getServiceManager()->get('Zend\Db\Adapter\Adapter');
// pobierz routingi
$rowset = $dbAdapter->query("SELECT * FROM public.seo WHERE ghost IS NOT TRUE AND alias IS NOT NULL")->execute();
$routeName = 'custom_route_';
$i = 1;
if (sizeof($rowset) > 0) {
foreach ($rowset as $item) {
if (strpos($item['alias'], '/') !== 0) {
$alias = '/' . $item['alias'];
} else {
$alias = $item['alias'];
}
$route = \Zend\Mvc\Router\Http\Segment::factory(array(
'route' => $alias . '[/:id][/:page]',
'constraints' => array(
'id' => '[0-9a-zA-Z]+',
'page' => 'page\-[a-zA-Z0-9_-]*',
),
'defaults' => array(
'controller' => $item['controller'],
'action' => $item['action'],
),
));
$e->getRouter()->addRoute($routeName . $i, $route);
$this->custom_routes[] = $routeName . $i;
$i++;
}
}
}
现在我需要更改url helper以从我的自定义路由创建链接。例如,如果我有:
$this->url('home');
结果链接应该是(因为别名在数据库中):
/myalias
除了:
/home
答案 0 :(得分:0)
我不知道ZF2,但我已经多次在ZF1中完成了......你只需要设置带有硬编码控制器和动作的自定义路由。这是我在ZF2文档中找到的(根据您的情况修改):
// In bulk:
$router->addRoutes(array(
// providing configuration to allow lazy-loading routes:
'bar' => array(
'type' => 'literal',
'options' => array(
'route' => '/myalias',
'defaults' => array(
'controller' => 'home',
'action' => 'index',
),
),
),
));
ZF2 DocRef:http://framework.zend.com/manual/2.0/en/modules/zend.mvc.routing.html