在 cakephp 中更改分页器 url

Change paginator url in cakephp

我见过这个问题的一些案例,但是,我还没有找到我的具体案例。

我想改变这个

http://localhost/dreyfus/trunk/home/birth/index/page:2

至此

http://localhost/dreyfus/trunk/home/cumple/index/page:2

我已经在 routes.php 上更改了:

Router::connect('/cumple', array('controller' => 'birth', 'action' => 'index'));

但还不够。

有什么建议吗?

Router::connect('/cumple/*', array('controller' => 'birth', 'action' => 'index'));