1.
建立一个Base.php 基类
<?php namespace app\index\controller; use think\Controller; class Base extends Controller { }
index.php
<?php namespace app\index\controller; use app\index\controller\Base; class Index extends Base { public function index() { return $this->view->fetch(); } }
分离模板 meta header menu footer
{include file="public/footer" /}