recently installed all the phpBB 3 SEO mods.
All went fine, but when installing "phpBB3 SEO Zero Duplicate" it goes wrong.
I can access neither /forum/ neiter /forum/index.php ...
It just gives me the indexpage of my site...
When changing
- Code: Select all
$this->seo_opt['zero_dupe'] = array( 'on' => true,
to
- Code: Select all
$this->seo_opt['zero_dupe'] = array( 'on' => false,
I can access it via /forum/index.php and not with /forum/.
But of course, the mod is disabled then...
My .htaccess file might be usefull:
- Code: Select all
##
# SEO SITE
##
DirectoryIndex /index.php
ErrorDocument 403 /
ErrorDocument 404 /
Options All -Indexes
Options +FollowSymLinks
RewriteEngine on
RewriteCond %(REQUEST_URI) !^/forum/.*
RewriteBase /
RewriteRule ^index\.html /index.php [NC,L]
RewriteRule ^([a-zA-Z0-9_-]*)/$ /index.php?page=$1 [NC,L]
RewriteRule ^([a-zA-Z0-9_-]*)\.html$ /index.php?page=$1 [NC,L]
RewriteRule ^([a-zA-Z0-9_-]*)/([a-zA-Z0-9_-]*)\.html$ /index.php?page=$1&seoext=$2 [NC,L]
RewriteRule (.*)\.xml(.*) $1.php$2 [nocase]
##
# SEO FORUM
##
RewriteRule ^forum/index\.html$ /forum/index.php [QSA,L]
RewriteRule ^forum/[a-z0-9_-]*-f([0-9]+)(-([0-9]+))?/?$ /forum/viewforum.php?f=$1&start=$3 [QSA,L,NC]
RewriteRule ^forum/[a-z0-9_-]*-f([0-9]+)/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?f=$1&t=$2&start=$4 [QSA,L,NC]
RewriteRule ^forum/announces/[a-z0-9_-]*-t([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?t=$1&start=$3 [QSA,L,NC]
RewriteRule ^forum/post([0-9]+)\.html$ /forum/viewtopic.php?p=$1 [QSA,L]
RewriteRule ^forum/member([0-9]+)\.html$ /forum/memberlist.php?mode=viewprofile&u=$1 [QSA,L]
RewriteRule ^forum/the-team\.html$ /forum/memberlist.php?mode=leaders [QSA,L,NC]
Any idea how to solve?

English |
French
