I thought I made some mistake updating my board from 3.0.4 to 3.0.6 and this great SEO mod from 0.4.8 to 0.6.2 because neither forum URLs nor topic URLs were rewritten correctly in Advanced mode.
It took me a few hours to find the problem: Simply put
- Code: Select all
$this->seo_static['forum'] = 'forum-';
in phpbb_seo/includes/setup_phpbb_seo.php and Advanced mode will not work anymore. (Be sure to put a minus (-) at the end.)
This problem does not occur e.g. with:
- Code: Select all
$this->seo_static['topic'] = 'thema-';
$this->seo_static['post'] = 'beitrag-';
$this->seo_static['user'] = 'mitglied-';
$this->seo_static['group'] = 'gruppe-';
The solution is a simple one: Just delete the minus:
- Code: Select all
$this->seo_static['forum'] = 'forum';
Regards
Wolfgang

English |
French


