I need to do 2 things:
- Pass couple of parameters to querystring
- Redirect to URL given in one of parameters
One of the parameters is redirect=URL_here.
The problem is, that i must redirect to that page: /about/me?look=1&sort=asc
Then, my URL looks like:
/mypage/?letter=S&redirect=/about/me?look=1&sort=asc
I know that this is wrong (contains two "?"). The question is, how to make that query string correctly?