Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.