#
# Project: Math Quiz Generator - Protect stored quizzes
# Author: Molla Samser (Founder, RSK World)
# Website: https://rskworld.in/
# Contact: help@rskworld.in, support@rskworld.in
# Phone: +91 93305 39277
# Location: Nutanhat, Mongolkote, Purba Burdwan, West Bengal, India, 713147
# Year: 2026
#
# Prevent direct access to stored JSON quizzes (passwords are hashed but protect the data).
# Access should happen via api/quizzes.php only.
#
<IfModule mod_authz_core.c>
  Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
  Deny from all
</IfModule>

