服务器错误500 Centos

时间:2016-03-05 13:57:03

标签: php apache

您好Centos 6 64 bit

它已安装LAMP html工程php无法正常工作

当我尝试在http://51.255.199.40/gpanel/上打开一个php游戏面板时,我得到Server Error 500,并在apache的error_log中得到:

[Sat Mar 05 14:45:58 2016] [error] [client 46.99.49.96] Directory index forbidden by Options directive: /var/www/html/

这是我的httpd.conf我的php.conf和一个名为welcome.conf的文件,php和welcome.conf位于conf.d文件夹中,httpd.conf位于conf文件夹中:

http://pastebin.com/xSzPrMmi

我在编码方面不是很好我需要帮助才能在5天内解决这个问题并且仍然无法修复

我的电子邮件地址是:benjaminselmani5@gmail.com如果你们需要联系我,我也会看这个话题。

尊重 本杰明塞尔马尼

1 个答案:

答案 0 :(得分:1)

AllowOverride None的阻止

中将AllowOverride All更改为httpd.conf
<Directory "/var/www/html">
    AllowOverride All
</Directory>