<IfModule mod_env.c>
    SetEnv CI_ENV production
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L] 
# force ssl
#RewriteCond     %{SERVER_PORT} ^80$
#RewriteRule     ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]

RedirectMatch 403 /.gitignore$
RedirectMatch 403 /.editorconfig$
RedirectMatch 403 /composer.json$
RedirectMatch 403 /contributing.md$
RedirectMatch 403 /error_log$
RedirectMatch 403 /readme.rst$
RedirectMatch 403 /php.ini$

</IfModule>
