# Keep mod_negotiation from getting in the way
Options -Multiviews
# Redirect requests to paths that don't exist to index.php
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule .* index.php
</IfModule>
