Forum Moderators: goodroi
I have something like this in my http.conf file
#
# AccessFileName: The name of the file to look for in each directory
# for access control information.
#
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</Files>
And I have this in my .htaccess file which is in the root directory chmoded to 666. (for use with trap.pl to trap bad robots )
<Files ~ "^.*$">
order allow,deny
allow from all
deny from env=ban
</Files>
Don't know why it can be viewable in browser.
I have one .htaccess file that is almost 30kB in size, and it does not slow down the server noticeably.
If your .htaccess file is slowing down your server, it would be a good idea to remove it until you can test to find out what is wrong -- usually late at night when your traffic drops off, if it does drop off.
Jim