Options -Indexes
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteCond %{REQUEST_URI} !^/php/
    RewriteCond %{REQUEST_URI} !^/storage/
    RewriteRule ^ /index.html [L]
</IfModule>
<FilesMatch "(\.env|config\.php|config_production\.php|config_backup\.php)$">
    Order allow,deny
    Deny from all
</FilesMatch>
<IfModule mod_php.c>
    php_value upload_max_filesize 20M
    php_value post_max_size 22M
    php_value max_execution_time 120
    php_value memory_limit 256M
    php_flag display_errors Off
</IfModule>