Disable Viewing Htaccess

Your htaccess file should usually have 644 access permissions via CHMOD. However, if you want to be potitively sure that nobody can view your htaccess file, this bit of code would result in a 403 error message:

<Files .htaccess>
order allow,deny
deny from all
</Files>