2011-10-11 55 views
0

默认情况下,显示分页编号时,该URL看起来像/controller/action/page:number。在我的应用程序定义了一个路线:如何更改使用CakePHP分页数字的网址?

Router::connect('/:categ', array('controller' => 'posts', 'action' => 'index'), array('categ' => '[a-zA-Z]+')); 

我想数字链接是这样/:categ/:page

我试着

Router::connectNamed(array('page')); 

但没有效果。

我错过了什么吗?

回答

0

你必须使用分页选项与URL参数:<?php $this->Paginator->options(array('url' => 'some params')); ?>