CakePHP自定义路由分页

时间:2011-02-17 19:32:48

标签: cakephp pagination

我想像我这样格式化我的网址:

/news/index/page:2

/news/2

我想通过使用尽可能少的代码(可能只来自routes.php?)来实现这个结果,而无需修改PaginatorHelper的行为。

感谢您的帮助!

1 个答案:

答案 0 :(得分:4)

这应该有效

// Add this to /app/config/routes.php
Router::connect('/news/:page', array('controller' => 'news', 'action' => 'index'));