Re: Paid Help, custom permalinks structure
No guarantees about this one….
Add this to an .htaccess file in the base of your bbPress installlation.
You will need to modify where specified.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase <<Insert real path to your installation>>
RewriteRule ^about([0-9]+).html(.*)$ <<Insert real path to your installation>>topic.php?id=$1 [L,QSA]
RewriteRule ^forum-([0-9]+).html(.*)$ <<Insert real path to your installation>>forum.php?id=$1 [L,QSA]
</IfModule>