Question
.htaccess Issues on Wordpress Droplet
I’m running a security plugin on my wordpress droplets and when it does an IP ban it throws an error (.htaccess: order not allowed here)
The .htaccess directive causing the problem looks like this
SetEnvIF REMOTE_ADDR "^192\.114\.71\.13$" DenyAccess
SetEnvIF X-FORWARDED-FOR "^192\.114\.71\.13$" DenyAccess
SetEnvIF X-CLUSTER-CLIENT-IP "^192\.114\.71\.13$" DenyAccess
order allow,deny
deny from env=DenyAccess
deny from 192.114.71.13
allow from all
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×