iThemes Security not compatible with Apache 2.4
-
iThemes Security makes heavy use of .htaccess files throughout to secure sections of WordPress.
Apache 2.4 deprecated the use of “Order deny,all” and “Deny from all” statements within .htaccess (mod_access).
They have been replaced with the mod_authz module. https://httpd.apache.org/docs/2.4/mod/mod_access_compat.html
The result is that if certain features of iThemes Security are enabled on an Apache 2.4 host, the site breaks with HTTP/500 errors.
A solution is to use the following instead:
<IfVersion < 2.4> Order deny,allow Deny from all </IfVersion> <IfVersion >= 2.4> Require all denied </IfVersion>
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘iThemes Security not compatible with Apache 2.4’ is closed to new replies.