找不到路径,报404错误,求解。。
<?php
namespace app\Controllers;
use Yii;
use yii\web\Controller;
class HomeController extends Controller{
   
    public function actionIndex(){
        echo "1111"; exit;
    }
}
访问地址如下
http://localhost/yii2/web/index.php?r=home/index
报404错误,求解。。

 
                            