Drupal 安装问题。奇怪的错误

Drupal installation issue. Strange error

所以我今天早些时候安装了 Drupal 8 beta,安装后我在 localhost/drupal 上得到了以下内容:

我决定删除 Drupal 8 并获得稳定版本,以防出现这个问题。结果我也有稳定版。

可能是 apache2.conf 问题?但我是 Drupal 的新手,在使用其他不使用 CMS 的网站时没有其他问题。

感谢您的宝贵时间。

编辑:

handle($request) // Handle the response object.    ->prepare($request)->send(); $kernel->terminate($request, $response); } catch (HttpExceptionInterface $e) { $response = new Response($e->getMessage(), $e->getStatusCode()); $response->prepare($request)->send(); } catch (Exception $e) { $message = 'If you have just changed code (for example deployed a new module or moved an existing one) read http://drupal.org/documentation/rebuild'; if (Settings::get('rebuild_access', FALSE)) { $rebuild_path = $GLOBALS['base_url'] . '/rebuild.php'; $message .= " or run the rebuild script"; } // Set the response code manually. Otherwise, this response will default to a // 200. http_response_code(500); print $message; throw $e; } 

尝试查看位于 /private/etc/apache2

的 http.conf 文件

确保 #LoadModule php5_module libexec/apache2/libphp5.so 未注释。

如果您安装新版本的 php(在我的例子中是 php7),您应该安装

  sudo apt-get install libphp7.0-embed