Hi
I need to apply a minify actions to all the javascript and CSS files, except the ones I indicate.
I have this condition and rule that applies to all the files (css and js):
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*\.)(js|css)$ minify.php?q=$1$2 [L,NC]
I need to add the conditions to say:
Apply to all except: jquery.js, prototype.js, etc..