<?php
namespace app\index\controller;
use think\Controller;
class Index extends Controller
{
function _construct(){
parent::_construct();
$this -> view -> replace(['__PUBLIC__' => '/static',]);
}
public function index()
{
return $this -> fetch();
}
}
最佳答案
