0
Yii2顯示重定向到Yii2頁面時沒有連接
SQLSTATE [HY000] [2002]套接字操作嘗試一個無法連接的主機。
當沒有互聯網接入,我怎麼能讓它重定向到一個頁面,說./index.php?r=site/neterror
?我試圖通過使用此代碼
<?php
use yii\db\Exception;
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');
try
{
(new yii\web\Application($config))->run();
}
catch(Exception $e) {
header("Location: ./index.php?r=site/error"); /* Redirect browser */
exit();
}
爲此在網絡/ index.php文件,但所有我得到的回覆是The page isn't redirecting properly
。
剛將您的調試'YII_DEBUG'環境更改爲'false' –