# Installer protection
# After installation, block external access for security

<IfModule mod_rewrite.c>
    RewriteEngine On
    # If .installed flag exists, block all access
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI}/../.installed -f
    RewriteRule ^ - [F,L]
</IfModule>

Options -Indexes
