| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
tenoch
Joined: 24 Jul 2008 Posts: 13
|
Posted: Fri Jul 25, 2008 2:29 am Post subject: solved phpbb2-webmedic to phpbb3-Advanced SEO URL |
|
|
Reading post in this forums, and making some test, I solve this:
Convert phpbb2 forum with seo mod of WebMedic
To phpbb3 with Advanced SEO URL
Activated:
Forum URL caching: yes
Forum ID Removing: yes
in control panel, In Forum URL Management, added:
vfx (x corresponding to the number I had before in each FORUM)
With This, my FORUMS urls where the same than before
But topics urls where:
old mod:
any-title-vtxxx.html
adv.mod:
any-title-txxx.html
So it was solved with:
Desactivated:
Forum URL caching: no
Forum ID Removing: no
Rebuilded the new .htaccess
Replace code in
phpbb_seo/phpbb_seo_class.php
| Code: | | $this->seo_delim = array( 'forum' => '-f', 'topic' => '-t', |
with :
| Code: | | $this->seo_delim = array( 'forum' => '-vf', 'topic' => '-vt', |
in .htaccess
| Quote: | | RewriteRule ^post([0-9]+)\.html$ viewtopic.php?p=$1 [QSA,L,NC] |
with :
| Quote: | | RewriteRule ^(post|[a-z0-9_-]*-vp)([0-9]+)\.html$ viewtopic.php?p=$2 [QSA,L,NC] |
And all works fine
Even when I desactivated Forum URL caching an Forum ID Removing, the forums keeped the vfx
Thanks |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |