You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The specification of the URL defines a set of reserved characters. Each of the character has a special meaning and should be treated with a special care:
Character Purpose in URL Encoding
: Separate protocol (http) from address %3B
/ Separate domain and directories %2F
# Separate anchors %23
? Separate query string %3F
& Separate query elements %24
@ Separate username and password from domain %40
% Indicates an encoded character %25
+ Indicates a space %2B
<space> Not recommended in URLs %20 or +
Bandicoot treats only the % symbol as a special case when parsing the query section of the URL. The most obvious problem is related to the + symbol. It does not translate the + into a space character.
The text was updated successfully, but these errors were encountered:
The specification of the URL defines a set of reserved characters. Each of the character has a special meaning and should be treated with a special care:
Bandicoot treats only the % symbol as a special case when parsing the query section of the URL. The most obvious problem is related to the + symbol. It does not translate the + into a space character.
The text was updated successfully, but these errors were encountered: