<IfModule mod_rewrite.c>
    RewriteEngine On

    # Disable MultiViews
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    # Internally rewrite all requests to public folder
    RewriteCond %{REQUEST_URI} !^/public/
    RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
