跟路由有关系吧?我用自己的代码修改了这个,我使用了分组,你不必这样做。我没有测试这段代码。
// routes.php
$router = new \Phalcon\Mvc\Router();
$router->setDefaultModule("__YOUR_MODULE__");
$router->removeExtraSlashes(true);
... your other routes ...
// posts group
$posts = new \Phalcon\Mvc\Router\Group(array(
'module' => '__YOUR_MODULE__',
'controller' => 'posts',
'action' => 'index'
));
// All the routes start with /post
$posts->setPrefix('/post');
$posts->add('/{postName}/:params', array(
'action' => 'index',
'params' => 2
));
// Maybe this will be enough for your needs,
// the one above has a catch all params, which
// has to be manually parsed
$posts->add('/{postName}', array(
'action' => 'index',
));
$posts->add('[/]*', array(
'action' => 'index',
));
$router->mount($posts);
unset($posts);
... other routes ...
return $router;
在您的控制器上,您可以通过postName
以下方式获取参数:
$this->dispatcher->getParam('permaPath');
如 phalcon 路由文档中所示,您可以在路由配置中使用正则表达式,像这样?
$posts->add('/{postName:[-0-6_A-Za-z]+}/:params', array(
'action' => 'index',
'params' => 2
));
所以,只允许-_
, 0-9
, A-Z
, 。如果 URL 中有逗号或其他内容,则路由不匹配,找不到 404 页面。a-z
postName