Closed
Description
Hi,
the subject says it all :-) It's a minor issue, but it's easy to make .htaccess
compatible with newer Apache versions.
Version Information
- Apache 2.4 with mod_authz_core enabled
Steps to Reproduce
- Browse the website, trigger generation of
wp-content/wonolog/
directory with.htaccess
file - Try to access
wp-content/wonolog/
What I Expected
403 Forbidden page
What Happened Instead
500 Internal Server Error page
How to fix
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Deny from all
</IfModule>