How to remove ? sign from URL with query string
How to remove ? sign from URL with query string
Share
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.
That regular expression is used to match the HTTP Request, the first line is going to look something like this:
The first word is the METHOD, which can be anywhere between 3 to 9 characters long (thus the
{3,9}, the second word is the unaltered URI of the request. This is what goes through the rewrite engine, but before any path processing is done on it. The last bit is the protocol version and is somewhat optional, and determines whether there will be headers afterwards.