mirror of
https://github.com/sruupl/batflat.git
synced 2026-05-28 21:11:11 +02:00
10 lines
231 B
ApacheConf
10 lines
231 B
ApacheConf
|
|
# Prevent directory listings
|
||
|
|
Options -Indexes
|
||
|
|
|
||
|
|
# URL rewrites
|
||
|
|
<IfModule mod_rewrite.c>
|
||
|
|
RewriteEngine On
|
||
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
|
RewriteRule ^ index.php [L]
|
||
|
|
</IfModule>
|