Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试导航到包含加号 ( +) 符号的文件夹中的图像。文件夹名称是/html/images/a+b/image.jpg
+
/html/images/a+b/image.jpg
这似乎引起了问题,因为我相信浏览器正在用空格(或%2B)代替加号。
%2B
有没有办法可以使用当前文件夹名称访问该图像?我知道问题出在加号,因为如果我更改文件夹名称并删除加号,/html/images/ab/image.jpg它将正确加载。
/html/images/ab/image.jpg
+是如何在 URL 中编码空格字符。如果您尝试访问包含文字的文件名,+则需要将其编码为%2B.