2007 de phpbb.com için yazmışım, 3.0.6 için sadece 2 değişiklik vardı.

##############################################################
## MOD Title: phpbb3 title seo
## MOD Author: angelside < n/a > (Sevdin Filiz) http://www.phpbbturkiye.net
## MOD Description: this mod change board title's more seo friendy 
## MOD Version: 1.0.4
## 
## Installation Level: Easy
## Installation Time: 5 minutes
## Files To Edit: index.php
## viewforum.php
## viewtopic.php
## styles/subSilver/template/overall_header.html
## Included Files: 
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes: 
## 
## Over shorter titles the only relevant keywords contained to get 
## and everyone times in the title not spend which one a straight 
## index, forum, topic indicates 
## 
##############################################################
## MOD History:
## 
## 2007-02-21 - Version 1.0.0b
##   - first release
## 
## 2007-04-17 - Version 1.0.1b 
##    - change header title for index.php
## 
## 2007-07-15 - Version 1.0.2b 
##    - phpBB3 RC3 test
##    - added description section
## 
## 2008-01-14 - Version 1.0.3b 
##    - phpBB3 Gold test
##    - change many variables
##
## 2010-02-06 - Version 1.0.4
##    - phpBB 3.0.6 updates
## 
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
#
#-----[ OPEN ]------------------------------------------
#

index.php

#
#-----[ FIND ]------------------------------------------
#

page_header($user->lang['INDEX']);

#
#-----[ REPLACE WITH ]------------------------------------------
#

page_header($config['sitename'] . ' - ' . $config['site_desc']);

#
#-----[ OPEN ]------------------------------------------
#

viewforum.php

#
#-----[ FIND ]------------------------------------------
#

page_header($user->lang['VIEW_FORUM'] . ' - ' . $forum_data['forum_name'], true, $forum_id);

#
#-----[ REPLACE WITH ]------------------------------------------
#

page_header($forum_data['forum_name'] . ' - ' . $forum_data['forum_desc'], true, $forum_id);

#
#-----[ OPEN ]------------------------------------------
#

viewtopic.php

#
#-----[ FIND ]------------------------------------------
#

page_header($user->lang['VIEW_TOPIC'] . ' - ' . $topic_data['topic_title'], true, $forum_id);

#
#-----[ REPLACE WITH ]------------------------------------------
#

page_header($topic_data['topic_title'], true, $forum_id);

#
#-----[ OPEN ]------------------------------------------
#

styles/subSilver/template/overall_header.html 

#
#-----[ FIND ]------------------------------------------
#

<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />

#
#-----[ AFTER ADD ]-------------------------------------
#

<title>{PAGE_TITLE}<!-- IF S_IN_MCP --> &bull; {L_MCP}<!-- ELSEIF S_IN_UCP --> &bull; {L_UCP}<!-- ENDIF --></title>

#
#-----[ FIND ]------------------------------------------
#

<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>

#
#-----[ REPLACE WITH ]------------------------------------------
# delete

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM