有没有理由我的浏览器百分比解码uri?

时间:2018-04-06 18:43:05

标签: http urlencode

当我在Firefox或Chrome中键入以下内容时:

http://localhost:50102/my%2Ftest/one

...我查看请求标题,它显示:

http://localhost:50102/my/test/one

为什么会这样做?

1 个答案:

答案 0 :(得分:1)

因为它意味着要做到这一点。 %引入了一个两位十六进制数字,作为单个字符。 0x2F恰好是ASCII中的/。要对空格进行编码,请使用%20