<?php// comment out the following two lines when deployed to productiondefined('YII_DEBUG')ordefine('YII_DEBUG',true);defined('YII_ENV')ordefine('YII_ENV','dev');require(__DIR__.'/../vendor/autoload.php');require(__DIR__.'/../vendor/yiisoft/yii2/yii/Yii.php');$config=require(__DIR__.'/../config/web.php');$application=newyii\web\Application($config);$application->run();