使用规则时
RewriteRule blah test.php?id=12345 [L]
然后访问blah?hello=1
会被重写为test.php?id=12345
,而hello=1
参数会丢失。
如何:
blah => test.php?id=12345
blah?hello=1 => test.php?id=12345&hello=1
blah?hello=1&youhou=2 => test.php?id=12345&hello=1&youhou=2
代替?