我正在寻找重写具有多个子字符串的URL。正在请求一个子字符串作为子目录,而任何其他子字符串作为常规查询字符串参数被请求。
例如,我想重写URL
http://www.mysite.com/mark/friends?page=2
至
http://www.mysite.com/friends.PHP?user=mark&page=2
我能够完成这个,除了问号字符。这是我的重写规则:
... RewriteEngine On RewriteBase / RewriteRule ^([A-Za-z0-9-_]+)/friends[?]?([^/\.]+)?$ friends.PHP?user=$1&$2 [L]
如果我将问号改为任何其他字符,它的效果非常好。似乎问题是’?’字符被错误地解释为新的查询字符串的开头。
我需要传递/ user / friends之后出现的任何参数。我该如何做到这一点?
您应该使用[QSA]标志,而不是尝试重写查询字符串。 [QSA]将查询字符串传递给重写的URL。
所以你的规则应该是:
... RewriteEngine On RewriteBase / RewriteRule ^([A-Za-z0-9-_]+)/friends/? friends.PHP?user=$1 [QSA,L]
你的情况非常类似于the example given for using the QSA flag in the mod_rewrite cookbook。