I want to redirect all root requests to a /pages/home
url, but I want to keep all the params used in the original request.
So:
http://myserver.com/?param1=value1¶m2=value2
Becomes
http://myserver.com/pages/home?param1=value1¶m2=value2
There are several SO questions about passing params in a redirect
but I haven't found any related to passing request's params.