Not using just HTML (the name of the forum you've posted in) except using the meta refresh method which would work like this:
The link on the 5,000 pages would look something like this:
HTML Code:
<a href="redirect.htm" target="_blank">Search Tinker's</a>
Then redirect.htm would look something like this:
HTML Code:
<html>
<head>
<title>Search Tinker's - Redirect</title>
<META HTTP-EQUIV = "REFRESH" CONTENT = "0; URL=http://db.tinkersgardens.com/?script=3.6&PARENTAGE=ALEXANDRA">
</head>
<body>
If you are seeing this, something went wrong.<br>
Click <a href="http://db.tinkersgardens.com/?script=3.6&PARENTAGE=ALEXANDRA">here</a> to search Tinker's.
</body>
</html>
Now, as I said before, a server side redirect would be better but, that is outside my area of expertise except to say that your host must allow you to do it and the method varies from one host to another. Other methods could be employed as well, none of them are strict HTML. A javascript method could be to use this for your 5,000 links:
HTML Code:
<script src="searchTinker.js" type="text/javascript"></script><noscript>JavaScript required to Search Tinker's</noscript>
Then the file searchTinker.js could look like this:
Code:
document.write('<a href="http://db.tinkersgardens.com/?script=3.6&PARENTAGE=ALEXANDRA" target="_blank">Search Tinker's</a>')
Bookmarks