I have a url which contains "!", "@", "#" and the server seems to choke, when these are not urlencoded.
Now Rebol3 seems to not urlencode them itself.
>> url: http://test/abc/#def/ghi
== http://test/abc/#def/ghi
If I do it manually, the "%" gets encoded, though:
>> replace url "#" "%23"
== http://test/abc/%2523def/ghi
Any idea on how to encode characters, which are not normally encoded?