Try it, it works for me, adding these rules to the main Apache configuration file:
RewriteEngine on
RewriteRule ^/cmsFolder/(.*)$ /newFolder/$1 [L]
I think you forgot the first slash before cmsFolder. If you want to see the mod_rewrite logs:
RewriteLog "_PATH_TO_YOUR_\rewrite.log"
RewriteLogLevel 9
Paolo, .htacces. , : -)
Edit:
, , [P] (Proxy):
RewriteEngine on
RewriteRule ^/cmsFolder/(.*)$ /newFolder/$1 [P]