Simpler RewriteCond rules.
authorIain Patterson <me@iain.cx>
Thu, 7 Nov 2013 12:59:12 +0000 (07:59 -0500)
committerIain Patterson <me@iain.cx>
Thu, 7 Nov 2013 12:59:12 +0000 (07:59 -0500)
Simply avoid rewrites for any file which exists rather than maintaining
a list of files which we explicitly don't rewrite.

www/.htaccess

index e56e28a..a3be2de 100644 (file)
@@ -1,5 +1,3 @@
 RewriteEngine on
-RewriteCond %{REQUEST_FILENAME} !/style\.css$
-RewriteCond %{REQUEST_FILENAME} !/logo\.png$
-RewriteCond %{REQUEST_FILENAME} !/login\.php$
+RewriteCond %{REQUEST_FILENAME} !-f
 RewriteRule ^(.+) index.php [L]