Rename to .htaccess.dist

Causes problems on default setup
This commit is contained in:
slawkens
2023-06-03 09:04:24 +02:00
parent fa015b8d39
commit 467f7ef927

19
.htaccess.dist 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>