mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 01:39:22 +02:00
20 lines
381 B
ApacheConf
20 lines
381 B
ApacheConf
<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>
|