The forum name is totally different, and it has nothing to do with mod_rewrite using this kind of structure.
Code:
RewriteRule ^threads/.* showthread.php [QSA]
RewriteRule ^forums/.* forumdisplay.php [QSA]
RewriteRule ^members/.* member.php [QSA]
RewriteRule ^blogs/.* blog.php [QSA]
ReWriteRule ^entries/.* entry.php [QSA]
In .htaccess the above rules contains words like threads, and members, that should be translated. Now the problem is, that obviously if I change it in the .htaccess it will not work, since vB4 will not know that, and still generate links that point to ^
threads/.* instead of what I changed, so it will not work. The question is how to modify it so I can change threads to something else.