I'm trying to rewrite the following URL
test.php?par1=foo&par2=bar
Into...
newtest.php?hidden_par=blah&par1=foo&par2=bar
I have this rule, that does not work:
RewriteRule ^test.php\??(.*?)$ newtest.php?hiden_par=blah&$1 [L]
Could this be done using RewriteCond or something else? (say, could this be done ?), thanks in advance.