开发者

How to change URL of pagination in CakePHP

I click on the next link. It shows me the URL like

http://www.domainname.com/fj_messages/index/page:2

I want to change开发者_运维百科 it like change this to

fj_messages/index/page:2

Like message/inbox/2

Can I do like this?


@gaioshin WTF.. That is the worst thing I've seen with regards to custom routes.

Router::connect('message/inbox/:page', array('controller' => 'fj_messages', 'action' => 'index'), array('pass' => array('page')));

Something like that should do it just the way you want. Check out routing for more information.

The page will be in $this->params['page'] if I remember correctly.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜