Code:
RewriteEngine on
RewriteBase /web/testvb/
# Forums
RewriteRule ^forum(.*).html forumdisplay.php?forumid=$1
RewriteRule ^forum(.*)page(.*).html forumdisplay.php?forumid=$1&pagenumber=$2
# Threads
RewriteRule ^thread(.*).html showthread.php?threadid=$1
RewriteRule ^thread(.*)page(.*).html showthread.php?threadid=$1&pagenumber=$2
RewriteRule ^printablethread(.*).html printthread.php?threadid=$1
# Jumpers
RewriteRule ^lastpostinforum(.*).html showthread.php?goto=lastpost&forumid=$1
RewriteRule ^lastpostinthread(.*).html showthread.php?goto=lastpost&threadid=$1
RewriteRule ^threadbeforethread(.*).html showthread.php?goto=nextoldest&threadid=$1
RewriteRule ^threadafterthread(.*).html showthread.php?goto=nextnewest&threadid=$1
RewriteRule ^lastposterprofilein(.*).html member.php?action=getinfo&find=lastposter&forumid=$1
RewriteRule ^postsbymember(.*).html search.php?action=finduser&userid=$1
# Users
RewriteRule ^profileformember(.*).html member.php?action=getinfo&userid=$1
# Other
RewriteRule ^groups.html showgroups.php
RewriteRule ^announcementsin(.*).html announcement.php?forumid=$1
RewriteRule ^memberlist.html memberlist.php
RewriteRule ^memberlistpage(.*).html memberlist.php?pagenumber=$1
RewriteRule ^faq.html misc.php?action=faq
I have to find every occurance of text that looks like the green text and replace it with text that looks like the red text.
Wish me luck