|
CodingForums
Having trouble with scripting? Visit our help forum to get the answers you need.
This is a 
|
|
Prevent viewing of .htaccess file
If you use htaccess for password protection, then the location containing
all of your password information is plainly available through the htaccess
file. If you have set incorrect permissions or if your server is not as
secure as it could be, a browser has the potential to view an htaccess
file through a standard web interface and thus compromise your
site/server. This, of course, would be a bad thing. However, it is
possible to prevent an htaccess file from being viewed in this manner:
<Files .htaccess>
order allow,deny
deny from all
</Files>
The first line specifies that the file named .htaccess
is having this rule applied to it. You could use this for other purposes
as well if you get creative enough.
If you use this in your htaccess file, a person trying to see that file
would get returned (under most server configurations) a 403 error code.
You can also set permissions for your htaccess file via CHMOD, which would
also prevent this from happening, as an added measure of security: 644 or
RW-R--R--
|