Aquí el code:
Código PHP:
  
    <?php
    define('IN_PHPBB', true);
$phpbb_root_path = 'foros/'; 
    $phpEx = substr(strrchr(__FILE__, '.'), 1);
    include($phpbb_root_path . 'common.' . $phpEx);
 
    // Start session management
    $user->session_begin();
    $auth->acl($user->data);
    $user->setup();
 
    page_header('Title Here');
 
    $template->set_filenames(array(
        'body' => 'index_body.html',
    ));
 
    make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
    page_footer();
    ?>    
 
