サイトにアクセス制限をかけることができる。
ファイル名は「.htaccess」。拡張子はない。
「.htpasswd」を用意し、ユーザー名・パスワード認証を行うことができる
パスワードは暗号化されたものを記述する
【ex】
user:pass(←実際は暗号化している)
「.htaccess」には「.htpasswd」のあるフォルダまでのパスを記述すること
【ex】/home/html/.htpasswd など
▼ベーシック認証をつくってくれる
http://www.htaccesseditor.com/
【ex】
deny from all
Options -Indexes
AuthUserFile /home/foo/bar/.htpasswd
AuthGroupFile /dev/null
AuthName "Please enter your ID and password"
AuthType Basic
require valid-user
DirectoryIndex index.html
order deny,allow