Apache 配置错误 403
Apache configuration error 403
我已按照本教程配置 http apache 服务器:
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Managing_Confined_Services/chap-Managing_Confined_Services-The_Apache_HTTP_Server.html
当我使用
连接时
telnet localhost 12345
GET / HTTP/1.0
我收到一个错误
HTTP/1.1 403 Forbidden
下面也列出了 apache 的默认值 html。
我尝试配置
/etc/httpd/conf/httpd.conf
添加
<Directory "/var/www/html">
Order allow,deny
Allow from all
Require all granted
</Directory>
还有运行
chmod -R o+x /var/www/html
我仍然遇到同样的错误。我该如何进行?
在 /var/www/html/ 目录中是否有一个名为 index.html 的文件?
我还建议检查 /var/log/httpd 目录下的访问和错误日志文件
我已按照本教程配置 http apache 服务器: https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Managing_Confined_Services/chap-Managing_Confined_Services-The_Apache_HTTP_Server.html
当我使用
连接时telnet localhost 12345
GET / HTTP/1.0
我收到一个错误
HTTP/1.1 403 Forbidden
下面也列出了 apache 的默认值 html。 我尝试配置
/etc/httpd/conf/httpd.conf
添加
<Directory "/var/www/html">
Order allow,deny
Allow from all
Require all granted
</Directory>
还有运行
chmod -R o+x /var/www/html
我仍然遇到同样的错误。我该如何进行?
在 /var/www/html/ 目录中是否有一个名为 index.html 的文件? 我还建议检查 /var/log/httpd 目录下的访问和错误日志文件