mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-03 04:39:20 +02:00
18 lines
309 B
ApacheConf
18 lines
309 B
ApacheConf
<IfModule mod_autoindex.c>
|
|
Options -Indexes
|
|
</IfModule>
|
|
|
|
<IfModule mod_negotiation.c>
|
|
Options -MultiViews
|
|
</IfModule>
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
|
|
#RewriteBase /myaac/
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^.*$ index.php [L]
|
|
</IfModule>
|