早速のお答えありがとうございます。
ご紹介頂いたページはすごく参考になりました。
ただ、どうも、各フォルダに置いてある.htaccessファイルそのものが全く有効になっていないようなのです。(ファイルRead権は付いています)
----------
AuthUserFile /home/hogehoge/.htpasswd
AuthGroupFile /dev/null
AuthName "Please enter your ID and password"
AuthType Basic
require valid-user
---------
などのBasic認証も使えていません・・・
Apache2/conf/httpd.confの中で、.htaccessのキーワードで検索した所、次のような箇所があるのですが、
<Directory "D:/WWW/home"> #(元は、"…/Apache2/htdocs"
:
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride None
となっているからでしょうか?
お礼
お陰さまで解決できました! httpd.confの AllowOverride None → all でした。 教えて頂いたリンクから辿っていき、最後に見つかった http://httpd.apache.org/docs/2.1/ja/mod/core.html#allowoverride での、 「このディレクティブを None に設定すると、.htaccess ファイルは完全に 無視されます。 この場合、サーバはファイルシステムの .htaccess ファイルを読むことを 試みさえしません。」 が決め手でした。 ヒント大変ありがとうございました。
補足
早速のお答えありがとうございます。 ご紹介頂いたページはすごく参考になりました。 ただ、どうも、各フォルダに置いてある.htaccessファイルそのものが全く有効になっていないようなのです。(ファイルRead権は付いています) ---------- AuthUserFile /home/hogehoge/.htpasswd AuthGroupFile /dev/null AuthName "Please enter your ID and password" AuthType Basic require valid-user --------- などのBasic認証も使えていません・・・ Apache2/conf/httpd.confの中で、.htaccessのキーワードで検索した所、次のような箇所があるのですが、 <Directory "D:/WWW/home"> #(元は、"…/Apache2/htdocs" : # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit AllowOverride None となっているからでしょうか?