我正在使用具有 Apache 2.4.3 的 xampp。在文件 xampp/apache/conf/httpd.conf 中,我设置了“AllowOverride All”。在 xampp/htdocs/.htaccess 我设置了“ErrorDocument 500 /InitialError.php”。InitialError.php 是一个文件,现在只是回显一些简单的 html。在我的文件 xampp/htdocs/index.php 我有行“$new = new unknownclass();” 其中类 unknownclass 未定义。
当我运行 index.php 文件时,我看到的只是错误消息“致命错误:第 3 行的 C:\xampp\htdocs\index.php 中找不到类 'unknownclass'”,如果 display_errors 为假,我看不到任何事物。
还有什么我需要设置的吗?