Hi there,
I am trying to 301 redirect a bunch or urls on my gallery site which uses url rewrite. I am not able to rewrite the urls for some reason as the url rewrite code in .htaccess seems to append added url string info at the end of the new url. For instance this rule:
Redirect 301 /photos/washington-dc/rosslyn-virginia-skyline-dusk/ http://example.com/photos/washington-dc/skylines-cityscapes/rosslyn-virginia-skyline-dusk/$
Results in this url:
http://example.com/photos/washington-dc/skylines-cityscapes/rosslyn-virginia-skyline-dusk/$?g2_view=core.ShowItem&g2_path=washington-dc/rosslyn-virginia-skyline-dusk&g2_page=
I need to add something to this rule to strip off this part: $?g2_view=core.ShowItem&g2_path=washington-dc/rosslyn-virginia-skyline-dusk&g2_page=
Hopefully it will redirect properly after that. I appreciate any help!