I have a few questions about your mod. Here's what I've done...
- Downloaded and installed locally the premod for phpBB3
- Restored a database I have from an online phpBB3, all works great...
All is working great, but the fact that when I activate the SEO the links stop working and I get a 404 error...
The site is allocated in:
localhost/coliseo_test/foro/
The .htaccess is like this:
- Code: Select all
# Lines That should already be in your .htacess
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
# You may need to un-comment the following line
# Options +FollowSymlinks
# REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
RewriteEngine On
# REWRITE BASE
RewriteBase /
# HERE IS A GOOD PLACE TO ADD THE WWW PREFIXE REDIRECTION
#####################################################
# PHPBB SEO REWRITE RULES - SIMPLE
#####################################################
# AUTHOR : dcz www.phpbb-seo.com
# STARTED : 01/2006
#################################
# FORUMS PAGES
###############
# FORUM INDEX
RewriteRule ^coliseo_test/foro/coliseo\.html$ /coliseo_test/foro/index.php [QSA,L,NC]
# FORUM
RewriteRule ^coliseo_test/foro/foro([0-9]+)/?(pagina([0-9]+)\.html)?$ /coliseo_test/foro/viewforum.php?f=$1&start=$3 [QSA,L,NC]
# TOPIC WITH VIRTUAL FOLDER
RewriteRule ^coliseo_test/foro/foro([0-9]+)/tema([0-9]+)(-([0-9]+))?\.html$ /coliseo_test/foro/viewtopic.php?f=$1&t=$2&start=$4 [QSA,L,NC]
# GLOBAL ANNOUNCES WITH VIRTUAL FOLDER
RewriteRule ^coliseo_test/foro/anuncions/tema([0-9]+)(-([0-9]+))?\.html$ /coliseo_test/foro/viewtopic.php?t=$1&start=$3 [QSA,L,NC]
# TOPIC WITHOUT FORUM ID & DELIM
RewriteRule ^coliseo_test/foro/[a-z0-9_-]*/?tema([0-9]+)(-([0-9]+))?\.html$ /coliseo_test/foro/viewtopic.php?t=$1&start=$3 [QSA,L,NC]
# PROFILES SIMPLE
RewriteRule ^coliseo_test/foro/usuario([0-9]+)\.html$ /coliseo_test/foro/memberlist.php?mode=viewprofile&u=$1 [QSA,L,NC]
# USER MESSAGES SIMPLE
RewriteRule ^coliseo_test/foro/usuario([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /coliseo_test/foro/search.php?author_id=$1&sr=$2&start=$4 [QSA,L,NC]
# GROUPS SIMPLE
RewriteRule ^coliseo_test/foro/grupo([0-9]+)(-([0-9]+))?\.html$ /coliseo_test/foro/memberlist.php?mode=group&g=$1&start=$3 [QSA,L,NC]
# POST
RewriteRule ^coliseo_test/foro/respuesta([0-9]+)\.html$ /coliseo_test/foro/viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^coliseo_test/foro/temas-activos(-([0-9]+))?\.html$ /coliseo_test/foro/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^coliseo_test/foro/sin-respuestas(-([0-9]+))?\.html$ /coliseo_test/foro/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^coliseo_test/foro/nuevas-respuestas(-([0-9]+))?\.html$ /coliseo_test/foro/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# THE TEAM
RewriteRule ^coliseo_test/foro/el-equipo\.html$ /coliseo_test/foro/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES
# END PHPBB PAGES
#####################################################
And is placed in localhost/
This is one of my problems, and the other is this...
I have a category called Coliseo, and in it, a forum named Anuncios, inside that forum I have a post called "Volvimos"...
The link to the Anuncios forum reads like this:
-http://localhost/coliseo_test/foro/foro3/
And I want it to read
-http://localhost/coliseo_test/foro/anuncios/
How can I do that?
Thanks,
Javier

English |
French
