Thanks for your comments!
What do you think about using a 301 Redirect to skip over the splash screen, as described
here?
It would be very simple to do, since I could remove the index.htm splash screen and replace it with an index.php file with the redirection:
PHP Code:
<?
header("HTTP/1.1 301 Moved Permanently");
header("Status: 301 Moved Permanently");
header("Location: http://www.tardfarmers.org/forum/index.php");
exit(0);
?>
Search engines should pick up on the 301 Redirect and index accordingly.
- Dan