I want to point to a sub directory file if it exists.
Currently I have in an .htaccess file at the webroot:
RewriteCond my_sub_dir/%{REQUEST_FILENAME} -d
RewriteRule ^.*$ my_sub_dir/%{REQUEST_FILENAME} [L]
Basically I want http://example.com/js/application.js to point to my_sub_dir/js/application.js if it exists