I have the following htaccess file which is used for friendly URLs on a CMS website.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase '/'
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]
</IfModule>
For some reason, when I visit an image which actually exists, i.e. www.website.com/images/image.jpg it serves up the image ok but before it does it hits index.php and runs my code stack, which itself makes a load of DB calls etc. What I want is for it to just simply serve up the image file and bypass the index.php for files which exist.
Thanks and any ideas?