Forum Moderators: phranque
You will be pleased to learn that passing query strings through redirects is Apache's default behavior. :)
Preserving the path info is simple enough as well, and is the default behavior of some of the redirect-related Apache directives. For those where it is not the default behavior, it's simple enough to do anyway.
Jim
<VirtualHost *>
RewriteEngine On
RewriteRule ^/abc [ggg.com...] [R,L]
</VirtualHost>
[ggg.com...]
Basically I need to make sure everything stays the same after the abc and just have that change to 123. I tested with my example, but it seems to be just rewriting to the static URL of www.ggg.com/123 and cutting off the data after that.