Quote:
Originally Posted by - Jesus Christ -
Fucking LOVE nginx! A bad implementation wouldn't kill images based on .htaccess rules. It could bypass them if you are not correctly passing the request to apache.
You might need a rewrite base defined. Try this.
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php
|
You know what it was? Upper case !-d and !-f
WTF? works once I changed it to lower case.