mirror of
https://github.com/sruupl/batflat.git
synced 2026-01-21 04:52:04 +01: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>
|