Versión phpBB: phpBB3 (3.0.6)
MODs Instalados: Ultimate SEO URL
Plantilla(s) usada(s): prosilver
Servidor: Linux de Pago
Actualización desde otra versión: No
Conversión desde otro sistema de foros: No
Bueno instale este foro http://www.aephoto.es/comunidad/, para hace pruebas, lo instale y le añadi el MOD (phpBB_SEO_Ultimate_SEO_URL_v0.6.2)
Bien ahora cuando intento entrar en una foro pos me sale el error 404, en las instrucciones dice que copie el siguiente .htaccess
Código: Seleccionar todo
# 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 lines
# Options +FollowSymlinks
# To make sure that rewritten dir or file (/|.html) will not load dir.php in case it exist
# Options -MultiViews
# REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
RewriteEngine On
# REWRITE BASE
RewriteBase /
# HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
# RewriteCond %{HTTP_HOST} !^www\.aephoto\.es$ [NC]
# RewriteRule ^(.*)$ http://www.aephoto.es/$1 [QSA,L,R=301]
# DO NOT GO FURTHER IF THE REQUESTED FILE / DIR DOES EXISTS
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
#####################################################
# PHPBB SEO REWRITE RULES ALL MODES
#####################################################
# AUTHOR : dcz www.phpbb-seo.com
# STARTED : 01/2006
#################################
# FORUMS PAGES
###############
# FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
# RewriteRule ^comunidad/forum\.html$ /comunidad/index.php [QSA,L,NC]
# FORUM ALL MODES
RewriteRule ^comunidad/(forum|[a-z0-9_-]*-f)([0-9]+)(-([0-9]+))?\.html$ /comunidad/viewforum.php?f=$2&start=$4 [QSA,L,NC]
# TOPIC WITH VIRTUAL FOLDER ALL MODES
RewriteRule ^comunidad/(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /comunidad/viewtopic.php?f=$2&t=$4&start=$6 [QSA,L,NC]
# GLOBAL ANNOUNCES WITH VIRTUAL FOLDER ALL MODES
RewriteRule ^comunidad/announces/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /comunidad/viewtopic.php?t=$2&start=$4 [QSA,L,NC]
# TOPIC WITHOUT FORUM ID & DELIM ALL MODES
RewriteRule ^comunidad/([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /comunidad/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
# PHPBB FILES ALL MODES
RewriteRule ^comunidad/resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /comunidad/download/file.php?id=$2&t=$1 [QSA,L,NC]
# PROFILES ALL MODES WITH ID
RewriteRule ^comunidad/(member|[a-z0-9_-]*-u)([0-9]+)/$ /comunidad/memberlist.php?mode=viewprofile&u=$2 [QSA,L,NC]
# USER MESSAGES ALL MODES WITH ID
RewriteRule ^comunidad/(member|[a-z0-9_-]*-u)([0-9]+)/(topics|posts)/?(page([0-9]+)\.html)?$ /comunidad/search.php?author_id=$2&sr=$3&start=$5 [QSA,L,NC]
# GROUPS ALL MODES
RewriteRule ^comunidad/(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /comunidad/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
# POST
RewriteRule ^comunidad/post([0-9]+)\.html$ /comunidad/viewtopic.php?p=$1 [QSA,L,NC]
# ACTIVE TOPICS
RewriteRule ^comunidad/active-topics(-([0-9]+))?\.html$ /comunidad/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
# UNANSWERED TOPICS
RewriteRule ^comunidad/unanswered(-([0-9]+))?\.html$ /comunidad/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
# NEW POSTS
RewriteRule ^comunidad/newposts(-([0-9]+))?\.html$ /comunidad/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
# THE TEAM
RewriteRule ^comunidad/the-team\.html$ /comunidad/memberlist.php?mode=leaders [QSA,L,NC]
# HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES
# FORUM WITHOUT ID & DELIM ALL MODES (SAME DELIM)
# THESE FOUR LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^comunidad/([a-z0-9_-]+)(-([0-9]+))\.html$ /comunidad/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^comunidad/([a-z0-9_-]+)\.html$ /comunidad/viewforum.php?forum_uri=$1 [QSA,L,NC]
# FIX RELATIVE PATHS : FILES
RewriteRule ^comunidad/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /comunidad/$1 [QSA,L,NC,R=301]
# FIX RELATIVE PATHS : IMAGES
RewriteRule ^comunidad/.+/(styles/.*|images/.*)/$ /comunidad/$1 [QSA,L,NC,R=301]
# END PHPBB PAGES
#####################################################