请求路径中带有百分号的资源
我需要请求一个文件 www.myserver.de/file%.pdf
。 该文件存在,并且请求重命名的副本 www.myserver.de/file.pdf
有效。
这是预期的行为吗?
I need to request a file www.myserver.de/file%.pdf
.
The file exists and requesting the renamed copy www.myserver.de/file.pdf
works.
Is this expected behaviour?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
% 是 URL 转义序列的字符。尝试使用 %25 解码为单个 % 符号。
% is the character for URL escape sequences. Try using %25 which decodes to a single % sign.
% 在 URL 中具有特殊含义,因此您需要对其进行转义才能引用名称中带有 %s 的文件。
请尝试使用
www.myserver.de/file%25.pdf
来代替。% has a special meaning in URLs, so you need to escape it in order to refer to files with %s in their names.
Try
www.myserver.de/file%25.pdf
instead.