2013-05-10 90 views
0

我想我的網址,從這個
/examinations/getchoices/page:2如何更改cakephp中的url分頁?

改變這種
/examinations/getchoices/item/2

我不知道如何做到這一點。我已經嘗試改變routes.php。我試過this site的教程。當我點擊上一個或下一個鏈接時,頁面內容不會改變。

這是我在URL
/examinations/getchoices/ 2/ 2

我的蛋糕的版本是2.1了。

您的幫助將不勝感激。我已經堅持了2天了。謝謝。

回答

0

您可以定義自定義路線。

http://book.cakephp.org/2.0/en/development/routing.html

例如,

Router::connect(
    ' /examinations/getchoices/item/:number', 
    array('controller' => 'examinations', 'action' => 'getchoices'), 
    array('pass' => array('number')) 
); 

讓我知道,如果我能在這裏幫助您更

+0

還有一例子:http://www.sakic.net/blog/changing-cakephp-pagination-urls/ – mirage 2013-05-10 15:24:39