I have a url that contains "!", "@", "#", And the server seems to choke when they don't have a url.
Now Rebol3 does not seem to call it themselves.
>> url: http://test/abc/#def/ghi
== http://test/abc/#def/ghi
If I do this manually, "%" is encoded, but:
>> replace url "#" "%23"
== http://test/abc/%2523def/ghi
Any idea on encoding characters that are not normally encoded?
source
share