天天看点

thinkphp6 路由

<?php

//路由的配置文件在  config/route.php 

//定义文件在        route/app.php

//强制路由

	'url_route_must' => true,  //route.php 里面进行配置


	Route::rule('/', 'Index/index');