Files
Batflat/admin/.htaccess

10 lines
231 B
ApacheConf
Raw Permalink Normal View History

2018-03-12 13:23:44 +01:00
# 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>