=== A total ban access ===
– Apache 2.2
Order deny, allow
Deny from all
– Apache 2.4
Require all denied
=== Allow access to all ===
– Apache 2.2
Order allow, deny
Allow from all
– Apache 2.4
Require all granted
=== Allow access for all but certain IP ===
– Apache 2.2
Order Allow, Deny
Allow from All
Deny from 172.16.16.16
– Apache 2.4
Require all granted
Require not ip 172.16.16.16
=== Deny access for all but certain IP ===
– Apache 2.2
Order Allow, Deny
Allow from 172.16.16.16
– Apache 2.4
Require ip 172.16.16.16
=== Complete ban on access to the file ===
– Apache 2.4
<Files license.txt>
<RequireAll>
Require all denied
</RequireAll>
</Files>
the plugin uses the standard Apache 2.2