I'm currently developing an online computer-based test using Rails. Each question is accessed through a unique page URL in the format /questions/<id>
.
On each question page, there is a 'next' button that directs users to the following question, such as /questions/<another-id>
. I want to prevent users from manually entering question URLs and accessing them directly.
Is there a server-side solution to address this issue?