特定のファイル以外にベーシック認証をかける方法
AuthUserFile /home/.........../.htpasswd
AuthGroupFile /dev/null
AuthName "Secret Area"
AuthType Basic
AddType application/x-httpd-php .htm .html
require valid-user
<Files "test.html">
Satisfy Any
Allow from all
</Files>
スポンサードリンク
phpに関するエントリー
メールで購読する
twitterで購読する
RSSで購読する
Satisfy Any Allow from all
は、改行いれないとエラーになります。
Satisfy Any
Allow from all
プチはまりしました。
>匿名さん
ご指摘ありがとうございます!修正しました。