# Enable rewrite engine and route requests to frameworkRewriteEngineOn# Some servers require you to specify the `RewriteBase` directive# In such cases, it should be the path (relative to the document root)# containing this .htaccess file## RewriteBase /# HTTPS for the people#RewriteCond %{HTTPS} off#RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]RewriteCond %{REQUEST_URI} \.ini$RewriteRule \.ini$ - [R=404]RewriteCond %{REQUEST_FILENAME} !-lRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule .* index.php [L,QSA]RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]