2011-10-11 54 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')); ?>