Originally posted by aaron_karp
This is kinda dirty, but you could modify the showthread.php page at the very top to check something like this:
if $threadID = 324032432 or whatever
header("Location:static.html")
Would that do the trick? I'm not sure if the page would still download before redirection took place.
if the browser is javascript-enabled, you can use the following code:
if ($threadID == "yourNumber")
{
echo "<script>location.href='static.html';</script>";
exit;
}
This will execute as soon as it is downloaded, so you could put it as high as possible in the page.
If PHP still continues to do it's thing, the exit; will stop it.
KITTfan2K