I can set the forumhome page to be FORUMDISPLAY,
however, vbulletin appends .php after the name, so I can't put "FORUMDISPLAY.PHP?f=4" as the home page because the url ends up being "/forumdisplay.php?f=4.php"
So here's the rub:
you can set the forum / cms / blog page to values in the ACP, and you can also go to forum settings to set the forum home. but this is good enough.
Essentially, I want "forums.php" to not display a list of forums (as I only have one) but a list of posts. This is done naturally through vbulletin @ forumdisplay.php.
forumdisplay.php will only display a forum if it gets a valid GET / POST request. So I want to find a way so if forumdisplay.php is called without a value (a $REQUEST value) then it will still display my single forum.
Make sense?
**** Added ****
I thought about adding a file as the home page : forumjump.php
and making it
Code:
<?php
header( 'Location: http://www.mysite.com/forums/forumdisplay.php?f=4' ) ;
?>
but this isn't good for SEO right?
**** end add ****