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.
当我使用 FileStore 进行文件上传时,它会自动重命名上传的文件。
可以不这样做吗?因为我下载的时候,真实的文件名没有扩展名,客户端也不知道怎么打开。
解决方案是像这样设置 mod-rewrite:
RewriteRule /upload/(.*).jpeg $1 [L]
这样您就可以使用扩展名“jpeg”,它仍然会指向正确的文件。
保留默认文件名是不安全的。