I'm not sure if this will work, but I have my site go to a custom VBA portal page, what I did was opened the index.php in my forums root and changed,
Code:
/**
* Use the forum as the default script:
*/
require('forum.php');
around line 63, to
Code:
/**
* Use the forum as the default script:
*/
require('portal.php');
so my guess is, if you change,
Code:
require('forum.php');
to
Code:
require('forumdisplay.php?2');
you should get the desired effect.