Only the phpBB SEO mod rewrite are auto detected, but it's usually easy to obtain the url you want with the mod.
Have you tried to set URL rewriting type to simple or advanced ?
From there, only few edits in gym_sitemaps/includes/phpbb_seo_class_light.php could do a good job depending on the URL you have on your forum.
Settings are pretty easy :
- Code: Select all
// Delimiters : used as separators in the .htaccess RegEx
// can be edited, requires .htaccess update.
$this->seo_delim = array( 'forum' => '-f', 'topic' => '-t', 'user' => '-u', 'usermsg' => '-m', 'group' => '-g', 'start' => '-');
// Default : Used as URL when format_url would return nothing or with simple URLs
// can be edited, requires .htaccess update.
$this->seo_static = array( 'forum' => 'forum', 'topic' => 'topic', 'post' => 'post', 'user' => 'member', 'group' => 'group', 'index' => '', 'global_announce' => 'announces', 'leaders' => 'the-team', 'usermsg' => 'messages', 'pagination' => 'page', 'gz_ext' => '.gz' );
// URL suffixes, for the phpBB URLs
// can be edited, requires .htaccess update.
$this->seo_ext = array( 'forum' => '.html', 'topic' => '.html', 'post' => '.html', 'user' => '.html', 'usermsg' => '.html', 'group' => '.html', 'index' => '', 'global_announce' => '/', 'leaders' => '.html', 'pagination' => '.html', 'gz_ext' => '');
Give more details about your rewritten forum urls (topic, forum, and pagination) if you want more help.