默认情况下,在显示分页编号时,网址会显示为/controller/action/page:number
。在我的应用程序中,我定义了一条路线:
Router::connect('/:categ', array('controller' => 'posts', 'action' => 'index'), array('categ' => '[a-zA-Z]+'));
我希望数字链接类似于/:categ/:page
。
我试过
Router::connectNamed(array('page'));
但没有效果。
我错过了什么吗?
答案 0 :(得分:0)
您必须在网址参数中使用分页选项:<?php $this->Paginator->options(array('url' => 'some params')); ?>