TCPDF/tools/.htaccess
SonOfHarris e42b70cb79
Support Apache 2.4 directives in htaccess file (#530)
Co-authored-by: Nicola Asuni <nicolaasuni@users.noreply.github.com>
2022-08-12 08:14:00 +01:00

11 lines
170 B
ApacheConf

# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
# Apache 2.2
<IfModule !mod_authz_core.c>
Order Deny,Allow
Deny from all
</IfModule>