Options -Indexes
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]
<FilesMatch "^\.">
  Require all denied
</FilesMatch>

# BEGIN iDrive Upload Limits
<IfModule php_module>
  php_value upload_max_filesize 30M
  php_value post_max_size 120M
</IfModule>
<IfModule php8_module>
  php_value upload_max_filesize 30M
  php_value post_max_size 120M
</IfModule>
<IfModule php7_module>
  php_value upload_max_filesize 30M
  php_value post_max_size 120M
</IfModule>
# END iDrive Upload Limits
