<IfModule mod_authz_core.c>
  Require all denied
  <FilesMatch "\.php$">
    Require all granted
  </FilesMatch>
</IfModule>
<IfModule !mod_authz_core.c>
  Order Allow,Deny
  Deny from all
  <FilesMatch "\.php$">
    Allow from all
  </FilesMatch>
</IfModule>
