如何通过ThinkPHP3.2.3路由实现长尾词参数传递?

2026-04-08 06:540阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计55个文字,预计阅读时间需要1分钟。

如何通过ThinkPHP3.2.3路由实现长尾词参数传递?

以下是对原文的简化

如何通过ThinkPHP3.2.3路由实现长尾词参数传递?

调用Blog/cate接口,参数:cate_id=1, status=1

thinkphp-param

U('Blog/cate',array('cate_id'=>1,'status'=>1)) U('Blog/cate','cate_id=1&status=1') U('Blog/cate?cate_id=1&status=1')