in

htaccess redirect wildcard

I have an old site that is indexed in Google and would like anything that was under the path below to redirect:

oldsite.com/NewsEvents/PressReleasesdetail/

(so for example there were several pages under this path like:)

oldsite.com/NewsEvents/PressReleasesdetail/tabid/348/Default.aspx
oldsite.com/NewsEvents/PressReleasesdetail/tabid/347/Default.aspx
oldsite.com/NewsEvents/PressReleasesdetail/tabid/302/Default.aspx

to now go to:

newsite.com/news-and-events/press-releases

how would I do this with htaccess?

Solution: htaccess redirect wildcard

I was able to do this:
RedirectMatch 301 ^/NewsEvents/(.*) http:// domian.com/news-and-events/press-releases

this way whatever was under NewsEvents goes to the new page