Remove .dist extension from .htaccess

This commit is contained in:
slawkens
2020-02-12 21:23:18 +01:00
parent f11b2e9132
commit 447ddeb6d3

19
.htaccess Normal file
View File

@@ -0,0 +1,19 @@
<IfModule mod_autoindex.c>
Options -Indexes
</IfModule>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
# you can put here your myaac root folder
# path relative to web root
#RewriteBase /myaac/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [L]
</IfModule>