I get 406 Not Acceptable on:
/process.php?return=http://blog
but not on:
/process.php?return=http//blog
only difference is :
How can I solve it?
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 need to escape the colon with
%3Alike this:Depending on what you’re doing with the URL, you might also find that escaping the slashes with
%2Fis a good idea:See “Reserved characters” here: http://www.blooberry.com/indexdot/html/topics/urlencoding.htm for more information.