.htaccess
directives


What is .htaacess?

File .htaccess contains config directives of webserver Apache. It places to the subdirectory, that may be seen by Apache. It's directives are actual for this subdirectory and all directories below it.

Authorization



AuthAuthoritative on
AuthName members
AuthType basic
AuthUserFile /home/www/servers/domain/passwd1
Require valid-user

File /home/www/servers/domain/passwd1 may be created with utility htpasswd.exe

Encoding



CharsetSourceEnc koi8-r
CharsetSourceEnc windows-1251

Encoding OFF



CharsetAutoRedirect koi8-r none
CharsetAutoRedirect windows-1251 none
CharsetAutoRedirect ibm866 none
CharsetAutoRedirect iso-8859-5 none
CharsetAutoRedirect x-mac-cyrillic none
CharsetAutoRedirect koi7 none
CharsetAutoRedirect utf-8 none
CharsetNormalizeToUrl none

Want more?

Read documentation on Apache Webserver

[ ]