// +---------------------------------------------------------------------- use app\common\tools\Sitemap; use think\facade\Route; Route::rule('/site.xml', function () { $content = Sitemap::init(); return xml($content); });