.htaccessの設定メモ
2496 ワード
ubuntu14.04 さくらサーバーでのhtaccess設定メモ 備忘録。
.htaccessを作成
アクセス制限をかけたいディレクトリに移動
vim .htaccess
以下を記述
AuthType Basic
AuthName "Input your ID and Password."
AuthUserFile /home/ubuntu/.htpasswd "#.htpasswdを好きな場所に置き指定"
require valid-user
.htpasswdを作成
以下のようなhtpasswd作成ツールを使用すると楽
.htpasswdファイル生成(作成)
.htpasswdの部分をコピーする。
先ほど指定したhtpasswdを設置するディレクトリに移動し
vim .htpasswd
コピーしたパスワードをペースト
test:t7m7HYtyrrr/g
VirtualHostの設定
AllowOverride をAllに設定する
<Directory /var/www/html/>
AllowOverride All
</Directory>
Apacheを再起動
/etc/init.d/apache2 restart
動作確認できた。
IP制限の掛け方
.htaccessに以下を追記する。
order deny,allow
deny from all #全てのホストを拒否する
allow from 許可したいIP1 #許可するホストだけ指定
allow from 許可したいIP2 #追加する分は追記
以上。
Author And Source
この問題について(.htaccessの設定メモ), 我々は、より多くの情報をここで見つけました https://qiita.com/kozimon/items/3ca6cf6eb87243099ce9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .