# Student Blog & Forum — root protections (Apache)
DirectoryIndex index.php index.html
Options -Indexes

# Block direct access to JSON data and markdown/credential files
<FilesMatch "\.(json|md)$">
  Require all denied
  <IfModule !mod_authz_core.c>
    Order allow,deny
    Deny from all
  </IfModule>
</FilesMatch>
