Sorry I didn't reply sooner, I was off for the weekend
So, you did not have VBSEO settings where the forum id was anywhere in the URL? For example:
Code:
http://www.example.com/forums/107-This-Is-A-Forum\.html
If not, then it requires a few more rules but it's very doable. For each forum add the following to .htaccess
Code:
RewriteRule ^my\-forumname/ http://www.mysite.com/forums/forumdisplay.php?f=45 [L,R=301]
On the right side of the rule, replace "45" with the forum id. On the left side of the rule, anywhere there is a period, dash, ( or ) in the forum name, you'll need to precede it with \
For example:
Code:
http://www.mysite.com/forums/my-forum-(name)-example.html would look like this:
RewriteRule ^my\-forum\-\(name\)\-example\.html http://www.mysite.com/forums/forumdisplay.php?f=45 [L,R=301]
Rules for members and albums are going to depend own how you had VBSEO setup. Best way to determine it is to look at your server log files and copy all "404" error files to a text file. If you have SSH shell access (command prompt) on the server here's how, assuming it uses standard log file format:
cat logfilename | grep -E '" 404 ' > errorexamples.txt
It will copy the error file entries to a text file named errorexamples.txt. Save that to your local computer and paste some examples here (or PM them to me). Replace your site name with something else before pasting it here.