It might. It doesn't look like index.php is handled in the existing code, so you should be able to check for $filename == 'index.php' and then use $values['page'] to check for the page.
Edit: Oh, I see you're saying it already says something for index.php. That's strange because I can't see where that's handled. So I'm not sure, but you could try to create a plugin that checks for index.php and see what happens.
OK, now I see why I missed it. The code uses $vbulletin->options['forumhome'] instead of using 'index.php' as a constant. So you're right, what's in that article won't work because index.php is already handled. But what I think you can do is create another plugin using hook online_location_preprocess and change $filename to something else, like:
Code:
if ($filename == 'index.php' AND isset($values['page']))
{
$filename = 'custom_page_wrapper';
}
then in the other plugins, check $filename for that value.
Or you could add the page name in the above plugin code like:
Code:
if ($filename == 'index.php' AND isset($values['page']))
{
$filename = 'custom_page_wrapper_' . $values['page'];
}
Then in the other plugins you only need to look at $filename and not $values['page'].