比如admin应用,入口入口aaaa.php
namespace think;
require __DIR__ . '/../vendor/autoload.php';
// 执行HTTP应用并响应
$http = (new App())->http;
$response = $http->name('admin')->run();
$response->send();
$http->end($response);生成地址:/admin/system/index.html
怎么配置才会将生成这样子的地址,不带应用名
/system/index.html
最佳答案