## START
<Files .htaccess>
order allow,deny
deny from all
</Files>

<IfModule mod_rewrite.c>
 RewriteEngine On

 # Redirect to HTTPS
 # RewriteCond %{HTTPS} off
 # RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

 # Some hosts may require you to use the `RewriteBase` directive.
 # RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
 # RewriteRule ^(.*) - [E=BASE:%1]

 # If the above doesn't work you might need to set the `RewriteBase` directive manually
 # Rewrite Base; Configure the path, example for localhost in dbmframework folder: /dbmframework/public/
 # RewriteBase /dbmframework/public/
 
 # Rewrite Rule Request
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteRule ^(.+)$ index.php [QSA,L]
</IfModule>
