Google sitemap'inizi yaratmak için ve google sitemap e eklemek için yapacağınız tek şey bu dosyayı forum root dizininize atmak ve sonra bunu google'da sitemap olarak eklemek.
NOT:Bu mod aynı zamanda webmedic'in phpBB SEO keyword URLs ile uyumlu haldedir.

-------------- yeni bir dosya yarat ve içine bu kodları ekle --------------------------------
<?php

function make_url_friendly($url)
{
   
   $url = strtolower($url);
   
   $find = array(' ',
      '&quot;',
      '&',
      '\r\n',
      '\n',
      '/',
      '\\',
      '+',
      '<',
      '>');
   $url = str_replace ($find, '-', $url);
   
   $find = array('é',
      'è',
      'ë',
      'ê',
      'É',
      'È',
      'Ë',
      'Ê');
   $url = str_replace ($find, 'e', $url);
   
   $find = array('í',
                '&yacute;',
                'ì',
                'î',
                'ï',
                'I',
                '&Yacute;',
                'Í',
                'Ì',
                'Î',
                'Ï');
        $url = str_replace ($find, 'i', $url);
   
   $find = array('ó',
        'ö',
                'Ö',
                'ò',
                'ô',
                'Ó',
                'Ò',
                'Ô');
        $url = str_replace ($find, 'o', $url);
      
   $find = array('á',
                'ä',
                'â',
                'à',
                'â',
        'Ä',
                'Â',
                'Á',
                'À',
                'Â');
        $url = str_replace ($find, 'a', $url);
   
   $find = array('ú',
        'ü',
        'Ü',
                'ù',
                'û',
                'Ú',
                'Ù',
                'Û');
        $url = str_replace ($find, 'u', $url);
   
   //      $find = array('ß');
//      $url = str_replace ($find, 'ss', $url);

        $find = array('ç', 'Ç');
        $url = str_replace ($find, 'c', $url);

        $find = array('&thorn;', '&THORN;');
        $url = str_replace ($find, 's', $url);

        $find = array('&eth;', '&ETH;');
        $url = str_replace ($find, 'g', $url);
   
   $find = array('/[^a-z0-9\-<>]/',
      '/[\-]+/',
      '/<[^>]*>/');
   
   $repl = array('',
      '-',
      '');
   
   $url =  preg_replace ($find, $repl, $url);
   
   $url = str_replace ('--', '-', $url);

   return $url;
}

define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . "common.$phpEx");
//Compresss the sitemap with gzip
//this isn't as pretty as the code in page_header.php, but it's simple & it works :)
if(function_exists(ob_gzhandler) && $board_config['gzip_compress'] == 1)
   {
   ob_start(ob_gzhandler);
   }
// Begin Configuration Section
$included_forum_ids = array();
$excluded_forum_ids = array(49);
// End Configuration Section

if ( count($included_forum_ids) > 0 )
{
   $included_forum_ids_sql = 'forum_id IN (' . implode(', ', $included_forum_ids) . ')';
}

if ( count($excluded_forum_ids) > 0 )
{
   $excluded_forum_ids_sql = 'forum_id NOT IN (' . implode(', ', $excluded_forum_ids) . ')';
}

if ( ( count($included_forum_ids) > 0 ) && ( count($excluded_forum_ids) > 0 ) )
{
   $and = 'AND';
}

if ( ( count($included_forum_ids) > 0 ) || ( count($excluded_forum_ids) > 0 ) )
{
   $where = 'WHERE';
}

$sql = "SELECT topic_id, forum_id, topic_title, topic_time, topic_type FROM " . TOPICS_TABLE . " $where $included_forum_ids_sql $and $excluded_forum_ids_sql ORDER BY topic_time DESC";

if ( !$result = $db->sql_query($sql) )
{
   message_die(GENERAL_ERROR, 'Error: could not retrive topic IDs', '', __LINE__, __FILE__, $sql);
}
$script_name = preg_replace('/^\/?(.*?)\/?$/', "\\1", trim($board_config['script_path']));
$server_name = trim($board_config['server_name']);
$server_protocol = ( $board_config['cookie_secure'] ) ? 'https://' : 'http://';
$server_port = ( $board_config['server_port'] <> 80 ) ? ':' . trim($board_config['server_port']) . '/' : '/';
$server_url = $server_protocol . $server_name . $server_port . $script_name;
if(substr($server_url, -1, 1) != "/")
{
   $server_url .= "/";
}
$output = '<' . '?xml version="1.0" encoding="UTF-8"?' . '>' . "\n";
$output .= '<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">' . "\n";

while ( $row = $db->sql_fetchrow($result) )
{
   $topic_id = $row['topic_id'];
   $topic_title = $row['topic_title'];
   $lastmodified = date('Y-m-d',$row['topic_time']);
   $viewtopic = $server_url . str_replace ('--', '-', make_url_friendly($row['topic_title']) . "-vt" . $row['topic_id'] . ".html");
   $priority = ( $row['topic_type'] == POST_STICKY || $row['topic_type'] == POST_ANNOUNCE ) ? '1.0' : '0.5';
   
   $output .= "<url>\n";
   $output .= "\t<loc>$viewtopic</loc>\n";
   $output .= "\t<lastmod>$lastmodified</lastmod>\n";
   $output .= "\t<changefreq>daily</changefreq>\n";
   $output .= "\t<priority>$priority</priority>\n";
   $output .= "</url>\n\n";
}
$output .= "</urlset>\n";

header('Content-type: application/xml');
echo $output;
?>
----------------- dosyayı googlesitemap.php olarak kaydet/kapat -----------------------
google'a sitemap olarak www.adresiniz.com/forum/googlesitemap.php adresini verin.

eğer forumunuzda özel bölümler varsa bunları
$excluded_forum_ids = array(49); satırındaki 49 yazan yere yazarak belirtebilirsiniz. Mesela benim yönetici alanı diye bir özel bölümüm var ve forum id'si 49 olduğu için öyle yazdım. Onu isteğe göre değiştirebilirsiniz.
Eğer birden fazla özel forumunuz varsa;
$excluded_forum_ids = array(1, 2, 3); şeklinde,
eğer hiç özel forumunuz yoksa;
$excluded_forum_ids = array(); şeklinde bırakabilirsiniz.
Saygılar...

----Alıntıdır----
http://www.canver.net/