|
|
|
|
|
by kstrauser
59 days ago
|
|
If you’re working with a use case where that’s even possible, you need to URL-encode it like woman/%2Fameeni
Consider that if the language allowed trailing slashes. What would this path mean if ameeni/ happened to be a valid word? ameeni//ameeni
One of those would get the slash but it’s not clear which.W3C says: > The slash ("/", ASCII 2F hex) character is reserved for the delimiting of substrings whose relationship is hierarchical. |
|