-app
-----index
----------controller
--------------Index.php
----------route
---------------route.php
route.php
<?php
use think\facade\Route;
Route::rule('/','Index/index/index');
Route::rule('home','Index/index/home');为什么我只能通过
/index/home.html
来访问
而不是
/home.html