Humanoid-friendly pagination url?

Hii there,

I’m working on getting pagination working for my website and I wonder if there’s a way to replace the ?page= with something more humanoid-friendly.
Currently, the url I need for changing pages is /blog?page=2 but I’d rather have something cleaner like /blog/page/2.

I wonder if there’s someone here who knows how to achieve this :slight_smile:

Custom Routing && Paginations Component + Helper

Well, I do have a route setup for it:

$routes->connect('/blog/page/:page',['plugin'=>null,'controller' => 'Blog', 'action' => 'display'])
      ->setPass(['page']);

But I don’t know how to continue after that…