Using Wildcard Redirects for dynamic URLs with Wordpress

Hi!

So I have a wordpress installation, and in my .htaccess-file I am trying to redirect plenty of pages from the old website (which uses dynamic urls, blegh) to one page on the new website, like so:

blah.com/text.asp?TID=160&SID=111&UID=266blah.com/help/

I would like to redirect using a wildcard after blah.com/text.asp?TID=160 so that all “suppages” redirect to /help/

Ok, so I tried the following (before and after the wordpress block):

RewriteEngine On
RewriteRule . /text.asp?TID=160(.*) /help/

It obviously isn’t correct, because it isn’t working, I’m a bit at a loss as everything else I tried in my research also hasn’t worked…

It would be marvellous if anyone could help!