Well it looks like you installed the phpBB SEO mixed mod rewrite php code changes with the phpBB SEO advanced (this mod's thread) .htaccess rewriterules.
So if you which to go for the mixed one, you'll have to change two lines in your .htaccess, should be something like :
Open :
- Code: Select all
.htaccess
Find :
- Code: Select all
# PAGINATED TOPIC
RewriteRule ^.+-vt([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L]
# TOPIC
RewriteRule ^.+-vt([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L]
Replace with :
- Code: Select all
# PAGINATED TOPIC
RewriteRule ^topic([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L]
# TOPIC
RewriteRule ^topic([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L]
If you'd prefer to go for the advanced one (topic title injection in url), then you should redo the php code changes part over the one you have already done (they are done at the same place in the files).
++

English |
French



