change .htaccess to not pass .js/.css/.jpg requests through to index.php
- by Dean
Hey guys, bit of a mod_rewrite noob, I've got:
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1
Which I believe says "If the file or directory exists, don't pass it to index.php".
I'd like another line which says "If it's a .jpg, .css, .js - don't pass it to index.php".
Any help appreciated.
Thanks :)