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 ^Forum_informatique/index\.html$ /Forum_informatique/index.php [QSA,L]
# FORUM PROTECTION RULE
# RewriteRule ^Forum_informatique/.*/([^/]+\.html)$ /Forum_informatique/index.php [R=301,L]
# CATEGORIES
RewriteRule ^Forum_informatique/.*-vc([0-9]+)\.html$ /Forum_informatique/index.php?c=$1 [QSA,L]
# PAGINATED FORUM
RewriteRule ^Forum_informatique/.*-vf([0-9]+)-([0-9]+)\.html$ /Forum_informatique/viewforum.php?f=$1&start=$2 [QSA,L]
# FORUM
RewriteRule ^Forum_informatique/.*-vf([0-9]+)\.html$ /Forum_informatique/viewforum.php?f=$1 [QSA,L]
# PAGINATED TOPIC
RewriteRule ^Forum_informatique/.*-vt([0-9]+)-([0-9]+)\.html$ /Forum_informatique/viewtopic.php?t=$1&start=$2 [QSA,L]
# TOPIC
RewriteRule ^Forum_informatique/.*-vt([0-9]+)\.html$ /Forum_informatique/viewtopic.php?t=$1 [QSA,L]
# POST
RewriteRule ^Forum_informatique/post([0-9]+)\.html$ /Forum_informatique/viewtopic.php?p=$1 [QSA,L]
#PROFILES
RewriteRule ^Forum_informatique/membre([0-9]+)\.html$ /Forum_informatique/profile.php?mode=viewprofile&u=$1 [QSA,L]
# END PHPBB PAGES
#####################################################