You want to route the address ./forums/gallery/index.php to ./forums/gallery.php?
This could be done easily enough through your server's Cpanel url redirects.
As for integrating the gallery, just use the template above in Serge's post and place the object declaration ($idx = new gallery) below:
PHP Code:
require_once('./global.php');
You should place the class in a separate file.
You'll have to configure the vB PHP file to then contain:
PHP Code:
require_once('./class_gallery.php');
chdir('../');
require_once('./global.php');