Forum Moderators: phranque
<Limit GET POST>
order allow,deny
allow from all
deny from 64.136.0.0
</Limit>
Any advice would be appreciated. Thanks.
Don't use the asterisk for a partial IP address range [httpd.apache.org]. As you have no doubt discovered, the Order [httpd.apache.org] directive is also very important.
Deny,AllowThe Deny [httpd.apache.org] directives are evaluated before the Allow [httpd.apache.org] directives. Access is allowed by default. Any client which does not match a Deny [httpd.apache.org] directive or does match an Allow [httpd.apache.org] directive will be allowed access to the server.
<Limit GET POST>
order allow,deny
allow from all
deny from 64.136.
</Limit>
What other neat stuff can I do? [httpd.apache.org]