Hi
My developer told me that you can’t rewrite the URL, because ?paginate1=2 is a query, if user placed multiple pageable product grid sections, then the query will be ?paginate2=* or ?pagination3=*. So, if you remove ?pagination1, the second page will not work properly.
He said you can only modify the ‘pagination’ text, for example change it to “paged”, then the URL will be …/?paged1=2, or remove the pagination text, then the URL will be …/?1=2
Now we can only add a new option that allow users to define their own pagination text, for example, if user define the text to “digtial-product”, then the URL will be …/?digital-product/2 Currently, this is only solution.
Is that OK for your need?