External/non-WP rewrite rule without QSA

The apache rewrite flags like QSA are hard coded, see source. Not sure why it would bother you, but if you really want to change it, then you can and should use the mod_rewrite_rules hook for that. Below an example on how to do it:

add_filter( 'mod_rewrite_rules', 'wpse107528_change_mod_rewrite_rules' );
function wpse107528_change_mod_rewrite_rules( $rules ) {
    $pattern = '/^(?<=RewriteRule\s\^go.+\$1\s)(\[QSA,L\])$/im';
    $replacement="[L]";
    $rules = preg_replace( $pattern, $replacement, $rules );
    return $rules;
}

Beware I haven’t tested the Regex.