After looking at 4-5 different ways to get simple clean URLs for static files, we found one that was simple and easy to implement/maintain over multiple folder and files.
One problem, it wont load the js/css/images from that folder it is looking at.
Here is the rule - it loads the html ok, but not the images, etc which are in the /images folder of /hello
RewriteRule ^hello/$ /hello/index.html [L]
RewriteRule ^company/$ /hello/company.html [L]
Any suggestions, folks?