The question URLs are of the form /1234/question-title, so assuming you don't have pages on your main site that only consist of numbers, you can do something like:
RedirectMatch 301 ^/([0-9]+)/(.*)$ http://www.yoursite.com/qna/$1/$2
The other pages are probably not worth redirecting, but you can do the users and tags pages with this:
RedirectMatch 301 ^/user/(.*)$ http://www.yoursite.com/qna/user/$1
RedirectMatch 301 ^/tag/(.*)$ http://www.yoursite.com/qna/tag/$1