Content deleted Content added
simplified + typical request + percent encoding is discussed below |
→URL Encoding: the query string may require conversion |
||
Line 27:
==URL Encoding==
In particular, [[Request for Comments|RFC 1738]] specifies that “only alphanumerics, the special characters "$-_.+!*'(),", and reserved characters used for their reserved purposes may be used unencoded within a URL”. All characters in a query string can be replaced by their hexadecimal value precedeed by the symbol <code>%</code>. For example, the equal sign can be replaced by <code>%3D</code>. All characters can be replaced this way; for the characters that are forbidden in a query string, this is not only possible but necessary.
|