前提・実現したいこと
ここに質問の内容を詳しく書いてください。
はじめまして
ベーシック認証というものを試してみたく、
Apache のxamppフォルダに test フォルダを作成し
.htaccess .htpasswd ファイル index.html ファイルと共にtestフォルダーにいれ
localhost/test/ で chromeからブラウザを立ち上げたところ Internal Server Error が発生しました。
ネットでいろいろ調べているのですが、浅学のためエラーが解消できません。
.htaccessファイルの内容↓
php_value output_buffering OFF php_value default_charset UTF-8 php_value mbstring.detect_order SJIS,EUC-JP,JIS,UTF-8,ASCII php_value mbstring.http_input pass php_value mbstring.http_output pass php_value mbstring.internal_encoding UTF-8 php_value mbstring.substitute_character none php_value mbstring.encoding_translation OFF AddType application/x-httpd-php .html AuthType Basic AuthName “Enter PassWord” AuthUserFile C:/xampp/htdocs/test/.htpasswd require valid-user
.htaccessの記述で間違いがあるのでしょうか?
ご協力ありがとうございます。
発生している問題・エラーメッセージ
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at postmaster@localhost to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log. Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.4.15 Server at localhost Port 80
該当のソースコード
php_value output_buffering OFF php_value default_charset UTF-8 php_value mbstring.detect_order SJIS,EUC-JP,JIS,UTF-8,ASCII php_value mbstring.http_input pass php_value mbstring.http_output pass php_value mbstring.internal_encoding UTF-8 php_value mbstring.substitute_character none php_value mbstring.encoding_translation OFF AddType application/x-httpd-php .html AuthType Basic AuthName “Enter PassWord” AuthUserFile C:/xampp/htdocs/test/.htpasswd require valid-user
試したこと
AuthUserFile のフルパス/.htpasswd のパスを変えてみる
.htpasswdファイルを別階層に置いてみる
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー