An entire folder can be redirected rather easily. For example, to redirect domain.tld/oldfolder/file.html to domain.tld/newfolder/file.html, you would use the following code in your .htaccess file:
Code:
RedirectMatch ^/oldfolder/(.*) http://domain.tld/newfolder/$1
I am not sure, however, if that will properly redirect query strings as well. If it doesn't, you may need to use mod_rewrite.