Forum Moderators: phranque
RewriteRule ^(001¦002¦003)/foobar/$ foobar/index.php?code=$1 [L] This works great, enabling any requests to www.mysite.com/002/foobar/ to go through to www.mysite.com/foobar/index.php?code=002, which is what I want.
However, if a user goes to www.mysite.com/002/foobar/?user=booyah, then I would like that parameter passed too (so www.mysite.com/foobar/index.php?code=002&user=booyah), but it doesn't.
The paramters that may appear in the url may be there, or may not, and also will vary greatly.
Can anyone help with how I change my rewrite rule?
Cheers,
Mitch.