Forum Moderators: phranque
Do not use any such code if you cannot fully understand it and evaluate the impact it will have on your existing access controls or server performance. No-one else knows your site like you do, and therefore, no-one else can say whether it would OK to install this or that code.
Be aware that any code in .htaccess is interpreted/executed for each and every HTTP request to your server -- every page, every image, every CSS file request, etc. Therefore, large sections of code should be avoided unless you really need them to solve an existing problem[/i].
Jim
<Files *>
Deny from all
</Files>
<Files ~ "^.*$">
Deny from all
</Files>
<FilesMatch "^.*$">
Deny from all
</FilesMatch>
Jim