# Allow access to all files in this directory
<IfModule mod_authz_core.c>
    Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
    Order allow,deny
    Allow from all
</IfModule>

# Disable directory listing
Options -Indexes

# Allow PHP files to be executed
<FilesMatch "\.(php|html?)$">
    Order allow,deny
    Allow from all
</FilesMatch>
