app |admin |controller Index.php |view |index index.php |home |controller Index.php |view |index index.php /** *app/admin/controller/Index.php */ namespace app\admin\controller; class Index { public function index() { return 'home.html'; } }
/** *app/admin/view/index/index.php */ <!DOCTYPE html> <html> <body> 后台视图窗口 </body> </html>