访问Index.php出错。请老师指点下。
不知道怎么回事
不知道怎么回事
2015-07-20
我是按照视频先访问自己服务器上面的basic/requirements.php 显示配置符合Yii要求。然后我才再访问的basic/web/index.php 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();
举报