/var/www/html内のファイルにアクセスできない
Q&A
Closed
解決したいこと
同じ記述内容、同じパーミッション、同じ所有者なのに片方はブラウザでForbiddenとなってしまうのはなぜでしょうか?
仮想マシンの/var/www/htmlにまずtest.htmlを作成しました。
<html>
<head>
<title>test</title>
</head>
<body>
<p>test</p>
</body>
</html>
次にtest.htmlコピーをしてhoge.htmlを作成しました
cp test.html hoge.html
ですが、test.htmlはhttp ://IPアドレス/test.htmlできちんと表示されるのに、http ://IPアドレス/hoge.htmlは以下のようにforbittenになってしまいます
なぜhoge.htmlはホストのブラウザで表示できないのでしょうか?どなたか教えてください。
(また、/etc/httpd/conf/httpd.confの設定は以下です)
<Directory "/var/www">
AllowOverride None
# Allow open access:
Require all granted
</Directory>
# Further relax access to the default document root:
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
使用環境
ホストOS:windows11
仮想マシン:almalinux(apacheをインストールしています)
その他に試したこと
〇仮想マシンのreboot
〇ブラウザのキャッシュのクリア
よろしくお願いいたします。
0