我想像我这样格式化我的网址:
/news/index/page:2
到
/news/2
我想通过使用尽可能少的代码(可能只来自routes.php?)来实现这个结果,而无需修改PaginatorHelper的行为。
感谢您的帮助!
答案 0 :(得分:4)
这应该有效
// Add this to /app/config/routes.php
Router::connect('/news/:page', array('controller' => 'news', 'action' => 'index'));