.htaccess files have now been replaced and that function is now under the httpd.conf file under apache/conf.
I would like to know the syntax of allowing everyone except several ranges of ip address blocks.
I have looked at the documentation for the different directives for the file but i have not found anything that does what i am looking to do.
the order command does not seem to work with deny,allow or even allow,deny
order deny,allow
deny from 10.1.0.0/24
or even
order allow,deny
deny from 10.1.0.0/24
I tried both ways and they both wont allow anyone to view my webpage if done that way. It is currently set to:
require all granted
under the in the httpd.conf file.
Any help would be appreciated.