Ok, thanks for your time!!
I figured out how to do it. I did not have any luck simply with the .htaccess, but I did with the index.php recode. And in case anyone else is looking for a way to create it, do the following:
Once you've isolated it down to one forum, you can remove index.php and use a mod_rewrite to redirect index.php to forumdisplay.php?f=x, where x is your forum id.
Assuming if you're using Apache based web server and have mod_rewrite enabled, add this to your .htaccess file should do the trick:
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^index.php$ forumdisplay.php?f=X [R]
</IfModule>
To be on the safe side, you may also wish to create an additional index.php file with these contents:
Code:
Code:
<?php
header('Location: forumdisplay.php?f=X');
?>
Don't forget to replace X with your forum id.