# LexForge — minimal .htaccess: blocks direct download of the SQL file.
# No mod_rewrite / no URL rewriting used anywhere in this app on purpose —
# every page has its own real .php filename, so there is nothing here that
# depends on mod_rewrite being enabled or configured correctly.
#
# If this file itself causes a 403 ("unable to read htaccess"), that's a
# permissions/ownership problem on the file itself, not its contents — set
# it to 644 in File Manager. If it still fails, you can safely delete this
# file entirely as long as you also delete database/IMPORT-THIS-INTO-PHPMYADMIN.sql
# from the server after importing it (which you should do anyway).

<IfModule mod_authz_core.c>
    # Apache 2.4+
    <FilesMatch "\.sql$">
        Require all denied
    </FilesMatch>
</IfModule>
<IfModule !mod_authz_core.c>
    # Apache 2.2 fallback
    <FilesMatch "\.sql$">
        Order allow,deny
        Deny from all
    </FilesMatch>
</IfModule>
