我正在制作博客和 url 路由是这样的-
Router::connect('/blog/c/:catid/*',
array('controller' => 'blogarticles', 'action' => 'index'));
它适用于 url as-/blog/c/3/other-articles
但是当我在视图中使用分页器时
echo $this->Paginator->numbers();
它生成网址为- /blogarticles/index/other-articles/page:2
应该在分页器中进行哪些更改以生成正确的 url。
请提出可能的解决方案,在此先感谢