I want to use URL parameters to define pagination pages like this /blogroll/?page=1
, /blogroll/?page=2
, /blogroll/?page=n..
instead of the conventional Wordpress way /blogroll/page/2/
In the same time, I want to preserve the normal permalink structure: /sample-post/
The goal is to make Wordpress change the way it manages pagination
/blogroll/page/2/
to
/blogroll/?page=2
I am happy also with this variant:
/blogroll/page/2/?page=2
if necessary.