可能重复:
查询字符串和 Mod 重写
我已经编写了一个 .htaccess 文件,它可以正确地将以下行转换为
http://localhost/questions/32/new-question-from-peter
进入
http://localhost/questions.php?question_id=32.
我使用的代码是
RewriteRule ^questions/([0-9]+)/[^/]*(?:\?(.+)=(.*))?$ public/questions.php?question_id=$1&$2=$3 [NC,L]
但是,当网址如下时,
http://localhost/questions/32/new-question-from-peter?page= <int>
即使我的网址是,它也不会正确处理页面信息
http://localhost/questions.php?question_id=32&page=2
它完美地工作。
有人可以帮我解决这个问题吗,我的代码哪里出错了