Closed
Description
Due to the lack of URL encoding processing, requesting a URL with spaces / unicode strings / more for the pages / APIs / static files will result in a 404 error.
File structure
- "public"
- "a b" <- with space!
- "c.txt"
- "a b" <- with space!
Request
https://localhost:8080/a b/c.txt
// Almost all web browsers encode this to "http://localhost:8080/a%20b/c.txt"
-> 404 - Page Not Found