Report this

What is the reason for this report?

.htaccess Issues on Wordpress Droplet

Posted on November 12, 2014

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


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

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.

Hey there,

In your Apache configuration you will want to set this site’s AllowOverride setting to AllowOverride All. After making the change to the configuration you will want to restart apache. CentOS: service httpd restart or Ubuntu: service apache2 restart

Happy coding,

Jon Schwenn Platform Support Specialist DigitalOcean

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.