function FileSecurity::denyPublicAccess
Returns htaccess directives to block all access to a given directory.
Return value
string Apache htaccess directives to block access to a location.
1 call to FileSecurity::denyPublicAccess()
- FileSecurity::htaccessLines in core/
lib/ Drupal/ Component/ FileSecurity/ FileSecurity.php - Returns the standard .htaccess lines that Drupal writes.
File
-
core/
lib/ Drupal/ Component/ FileSecurity/ FileSecurity.php, line 90
Class
- FileSecurity
- Provides file security functions.
Namespace
Drupal\Component\FileSecurityCode
protected static function denyPublicAccess() {
return <<<EOF
# Deny all requests from Apache 2.4+.
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
# Deny all requests from Apache 2.0-2.2.
<IfModule !mod_authz_core.c>
Deny from all
</IfModule>
EOF;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.