I\'m not really sure this belongs here, so instead of downvoting just lemme know if so and I\'ll quickly move it on.
Anyway, there is a website that has a search pag
Edit: It is not possible to create a link directly to the first page. However, you can easily send a user to the first page by by creating a form:
And then submitting the form whenever the user clicks a psuedo-link:
document.getElementById("postForm").submit();
This can also be done by typing JavaScript code into the address bar:
javascript:a=document.createElement("form");a.method="POST";a.action="http://www.torec.net/ssearch.asp?search=dark&page=2";i=document.createElement("input");i.name="search";i.value="q";a.appendChild(input);a.submit();