index.php
namespace app\index\controller;
use app\index\controller\Base;
class Index extends Base
{
public function index()
{
return $this-> view ->fetch(); }
}
基类
namespace app\index\controller;
use think\controller;
class Base extends controller
{
}
Check if your view has index.html in the index folder