Hey,
I have the following in the htaccess of my main folder
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^css/(.*)\.css$ - [L]
RewriteRule ^(.*)\.css$ - [L]
The second rule works fine. That is, the CSS files in the main directory are accessed directly. However, this was not propagating to the directory "css". Hence I created the first rule. That is also not working.
Is there a particular reason why the rules don't propagate or am I missing something here?