Gerekli dosyaları editleyim FTP'den attım ayrıca yüklenmesi gereken dosyaları da attım ama forum başlığına tıklayınca 404 hatası veriyo.
Acaba nerede hata yapmış olabilirim? Forumum forum dizininde.

.htaccess dosyası içeriği:
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>

<Files "common.php">
Order Allow,Deny
Deny from All
</Files>

# You could need to un-comment the following line
# Options +FollowSymlinks
RewriteEngine On
RewriteBase /

#########################################################
# PHPBB SEO REWRITE RULES                #
#########################################################
# AUTHOR : DCZ http://www.phpbb-seo.com/
# STARTED : 01/2006
##################################################### 
# FORUMS PAGES 
########################
# FORUM INDEX (un-comment if used)
# RewriteRule ^phpbb/index\.html$ /phpbb/index.php [QSA,L]
# FORUM 
RewriteRule ^forum/[a-z0-9_-]*-f([0-9]+)(-([0-9]+))?/?$ /phpbb/viewforum.php?f=$1&start=$3 [QSA,L,NC]
# TOPIC 
RewriteRule ^forum/[a-z0-9_-]*-f([0-9]+)/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /phpbb/viewtopic.php?f=$1&t=$2&start=$4 [QSA,L,NC]
# GLOBAL ANNOUNCES && TOPIC WITHOUT FORUM URLS
RewriteRule ^forum/(annonces/)?[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /phpbb/viewtopic.php?t=$2&start=$4 [QSA,L,NC]
# POST 
RewriteRule ^forum/post([0-9]+)\.html$ /phpbb/viewtopic.php?p=$1 [QSA,L]
#PROFILES 
RewriteRule ^forum/member([0-9]+)\.html$ /phpbb/memberlist.php?mode=viewprofile&u=$1 [QSA,L]
# THE TEAM
RewriteRule ^forum/the-team\.html$ /phpbb/memberlist.php?mode=leaders [QSA,L,NC]
# END PHPBB PAGES 
#####################################################