Web 服务文件:Firefox 截断名称
我正在从 Lighttpd 提供一个文件,其名称包含空格字符。我正在使用 mimetype“application/octet-stream”
当我在 Chrome 中下载它时,它工作得很好。但是当我在 Firefox 中下载时,文件名在第一个空格处被截断。
这与 mimetype 有关吗?还有其他一些轻量级的配置吗?或者也许与我使用的空格字符有关?
I'm serving a file from Lighttpd whose name contains space-characters. I'm using mimetype "application/octet-stream"
When I download this in Chrome, it works perfectly. But when I download in Firefox, the filename is truncated at the first space.
Is this to do with the mimetype? With some other lightty config? Or maybe something to do with the kind of space-character I'm using?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要对链接进行 urlencode。 URL 中的空格很容易被误解。
space 的 url 代码是 %20 或者您也可以使用 +
So
我不喜欢使用带空格的文件名。
You need to urlencode your links. Spaces are easily misunderstood in URLS.
The url code for space is %20 or you can also use +
So for
I prefer to not use filenames with spaces in them.