该项目在本地系统上正常运行,但是当我在生产服务器上部署项目时,我收到了来自此路径的错误 供应商/ yiisoft / yii2 /碱/ ErrorHandler.php
if (YII_DEBUG) {
if (PHP_SAPI === 'cli') {
echo $msg . "\n";
} else {
echo '<pre>' . htmlspecialchars($msg, ENT_QUOTES, Yii::$app->charset) . '</pre>';
}
} else {
echo 'An internal server error occurred.';
}
当我点击网址时,屏幕显示空白,出现上述错误&#34;发生内部服务器错误。&#34;以及来自上面代码的错误。
这是我的index.php
<?php
// comment out the following two lines when deployed to production
//defined('YII_DEBUG') or define('YII_DEBUG', true);
//defined('YII_ENV') or define('YII_ENV', 'dev');
require(__DIR__ . '/../vendor/autoload.php');
require(__DIR__ . '/../vendor/yiisoft/yii2/Yii.php');
$config = require(__DIR__ . '/../config/web.php');
(new yii\web\Application($config))->run();