# Optional rewrites for Apache
<IfModule mod_rewrite.c>
  RewriteEngine On
  # Redirect all to index.php for front controller
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^ index.php [L]
</IfModule>
