# Protect sensitive files
<FilesMatch "^(db\.php|bot_log\.txt)$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

# Enable error logging (disable display_errors in production)
php_flag display_errors Off
php_flag log_errors On

# UTF-8 encoding
AddDefaultCharset UTF-8

# Prevent directory listing
Options -Indexes
