Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 httpd.conf 中有这个。我访问 index.php 没有问题,并且 PHP 代码在其中运行良好,但是 classes.php - 我在同一目录中的另一个文件给了我一个 HTTP 错误 500。
Alias /serv /home/will/Dropbox/Business/serv <Directory /home/will/Dropbox/Business/serv/> Order allow,deny Allow from all </Directory>
问题实际上是 PHP 代码的错误。
如果您收到此错误但不确定原因可能是因为您有某种语法错误。似乎如果在 php.ini 中关闭了 display_errors,apache 将简单地返回 500 错误。导航到 /etc/php5/apache2 并在 php.ini 中找到 display_errors 并将其切换为“On”。您的页面现在应该告诉您遇到了什么样的 PHP 错误,而不是简单地返回 500。