1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Basic認証によるページへの アクセス制限をかけたかった

Last updated at Posted at 2015-10-20

##しようとしたこと

お客さんに基調色のチェックをしてもらいたくて
テストページに.htaccessを入れてBasic認証によるページへの
アクセス制限をかけたかった

##.htaccessファイルを作成

.htaccess
AuthUserFile サイトのフルパス/(制限をかけたいディレクトリ)/.htpasswd #.htpasswdのフルパスを記載
AuthGroupFile /dev/null				
AuthName "Please enter your ID and password" #ウィンドウに表示される文字列
AuthType Basic
require valid-user 

##.htpasswdファイルを作成

許可するユーザー名とパスワードを入力。
パスワードは暗号化をしないといけない。(自分はこれで引っかかる(´;ω;`))

.htpasswd
hoge:haT9jB5KPnfSM #ランダムになってるがこれじつは " hogehoge "

暗号化はググると色々でてくるよ!
▶たまたま見つけたよさ気なサイトはこちら

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?