开发者

How to change URL of pagination in CakePHP

开发者 https://www.devze.com 2023-01-04 18:45 出处:网络
I click on the next link. It shows me the URL like http://www.domainname.com/fj_messages/index/page:2

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

精彩评论

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