When visit file of which name contains space and other characters, it is necessary to decode it.
For example:
sample.xyz/sample image.jpg is invalid
sample.xyz/sample%20image.jpg is valid. But this way local file can't been match successfully.
So how should this be supported?
Decode the uri before it been send to file-server, or decode it inside file-server?
When visit file of which name contains space and other characters, it is necessary to decode it. For example:
sample.xyz/sample image.jpg
is invalidsample.xyz/sample%20image.jpg
is valid. But this way local file can't been match successfully. So how should this be supported? Decode the uri before it been send to file-server, or decode it inside file-server?