# 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

# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php81” package as the default “PHP” programming language.
<IfModule mime_module>
  AddHandler application/x-httpd-ea-php81 .php .php8 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
