Pagination : How to remove /page/x/ after a ‘POST’ action on a form returning to page 1

Your form will post back to the URL specified in the action parameter, or to the same URL if you don’t specify it. You start at /books/page/8/, so if your action parameter is empty, the resulting URL will also be /books/page/8/. Just fill in the action parameter with /books/, and it should work.