should canonicalize_url
treat path parameters like query string parameters?
#92
Labels
canonicalize_url
treat path parameters like query string parameters?
#92
This is sort of an edge case as very few websites use path parameters anymore, however some do.
For those unfamiliar, they're contained in
urlparse()[3]
orurlparse().params
. The RFCs basically describe them as parameters specific to the last path segment and can be kwargs or raw values.Very few systems still use it, but some do. For example, Amazon used them from launch until the early 2000s to handle cookieless-sessions and much of what is now in query-strings. A handful of java servers use them for sessions too (e.g
JSESSIONID
).The text was updated successfully, but these errors were encountered: