Forum Moderators: phranque
<Directory "C:/webserver/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
And change the AllowOverride directive from None to .htaccess. That should do the trick.
Jim
--------------------------------------------
IndexIgnore .htaccess */.?* *~ *# */HEADER* */README* */_vti*
<Limit GET HEAD POST>
order deny,allow
deny from xx.xx.xx.xx
deny from xx.xx.xx.xx
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
--------------------------------------------
I'm assuming the "IndexIgnore .htaccess" refers to search engine spiders reading the htaccess file.
I have about 35 IP's blocked, but I just showed 2 above so that you would get the idea.
Thanks for everyones help..