Is it possible to have it so when a page is requested with a get parameter from an link, say
www.mtsite.com?param=val
That the parameter stuff is hidden, without using post and JS?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could immediately set a cookie with the parameter after doing a redirect using:
I just read that the order has to be location redirect and then cookie set, so you’ll want to make sure to do it in that order.
Then, when you catch the redirected page, get the cookie with that parameter and act appropriately (probably clearing the cookie in the process).