Options -Indexes
Options FollowSymLinks

AddDefaultCharset UTF-8

<IfModule mod_rewrite.c>
    RewriteEngine On

    # If the request maps to a real file or directory, serve it directly
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    # Otherwise route everything through index.php
    RewriteRule . index.php [L]
</IfModule>
