Is it possible to define a custom URL for CakePHP pagination url?
I need something like /:slug/:slug2/:slug3/. How should I provide this url to pagination?
Thanks!!
P.S. If I'm using this, CakePHP defines controller and view automatically in the URL and
result is /controller/action/something/ - I need to disable controller and action in url.
$this->Paginator->options(array(
'url' => '/something/'
));