我正在使用以下规则以目录样式重写 url,
RewriteRule ^post/([0-9]+)$ post.php?pid=$1
通过使用这个我localhost/post.php?pid=3
指向localhost/post/3
但现在我想以默认方式传递更多参数,例如?key=value
.
例如localhost/post/3?comment_id=23
,但此键值对在脚本中不可用。当我这样做时echo $_GET['comment_id']
,它不会回显任何东西。
我该如何完成它。