thinkphp6:如何在多应用模式下配置路由

1.创建route目录

给需要设置路由的模块新增route文件夹
thinkphp6:如何在多应用模式下配置路由_第1张图片
注意:index文件名可以更改。
index.php文件结构

//文件地址
namespace app\demo\route;
//使用Route对象
use think\facade\Route;

/***配置路由
param1:在浏览器上的地址
param2:文件中的相对路径
param3:请求方法,get还是post
**、  

Route::rule('test','detail/index','GET');

2.访问

注意:在浏览器中访问路径的时候,需要在路径前方加上当前模块的名称

举例子:

以下是错误的

http://127.0.0.1/test

以下是正确的

http://127.0.0.1/demo/test

预览
thinkphp6:如何在多应用模式下配置路由_第2张图片

你可能感兴趣的:(tp6开发问题集锦)