TP6的路由怎么实现?我写一个简单教程。

#ThinkPHPadmin  最后发表时间:2022-04-24

以单应用为例,如前台为index项目,在app/index/目录下新建route目录,现在这个目录下新建文件app.php(文件名随意)。

假定链接为:index/list/index.html?id=1&classid=1用路由功能来美化一下,在app.php文件里写入以下代码

use think\facade\Route;


Route::rule('news/:id/:classid''list/index');

这样子链接就会自动变为:index/news/1/1.html



上一篇:QQ登录简单实现代码

下一篇:没有了

发表评论

0 个回复