QSA hängt AFAIK nur den Query-String an (Query String Append), falls einer übergeben wurde. Also falls du z.B. "foo.html" mit [QSA] auf "bar.php" umleitest, so wird "foo.html?qux" auf "bar.php?qux" umgeleitet. Da du den Query-String hier ja selber erstellen willst, weiß ich nicht ob das funktioniert, aber probieren geht wie wir alle wissen übers studieren. ^^

Ieks, ich sehe gerade:
Zitat Zitat von Apache Doc
'qsappend|QSA' (query string append)
This flag forces the rewrite engine to append a query string part of the substitution string to the existing string, instead of replacing it. Use this when you want to add more data to the query string via a rewrite rule.

Apache mod_rewrite doc
Scheint genau das zu sein, was du brauchst. Du sollst das benutzen, wenn du mehr Daten hinzufügen willst. Klingt passend. ^^