所以我在frontend / controllers目录中创建了一个TestController文件,然后在其中创建了一个带有index.php文件的视图/测试目录。我的TestController代码就是这个
<?php
namespace app\frontend\controllers;
use yii\web\Controller;
class TestController extends Controller{
public function actionTest(){
return $this->render('index');
}
}
我的索引文件只包含hello world的回显。
我现在的问题是,如何在浏览器中运行它? 我试过网址
http://localhost/myapp/frontend/test/
我收到了错误
未找到
The requested URL /myapp/frontend/test/ was not found on this server.
我也试过这个
http://localhost/myapp/frontend/test/index
仍然没有工作。又怎样 ?