I am considering implementing a jump to item's page feature in a REST app, much like StackOverflow's does with questions with multiple answer pages. If you ask for a URL like https://stackoverflow.com/questions/194812/list-of-books/1215215, it will jump to the question's page containing the specific answer (page 4 for this specific case as of this writing). Notice that the client does not request an specific page by number, it requests a page that contains an item of interest and the server needs to resolve the page. In StackOverflow, this is used to get from a user's profile page to the user's answer in context, for example.
I would like to do that within my app, but I can't get to a final (RESTful) design. I've considered the answers to question 776448 and chose to go with the query strings only solution for the base case. But should the app respond a query to an item's page with a 200 response (like StackOverflow does) containing the page with the item, or should it respond with a 302 redirect to the query string version URL? StackOverflow went with the first solution, but which solution do you find more RESTful?