开发者

Is it safe to serve an image on the web without an extension?

开发者 https://www.devze.com 2023-01-11 09:30 出处:网络
I\'m treating all *.jpg files as static, but I need to serve a few dynamically. Can I simply omit the extension so I don\'t have to get fancy with my url rules? Is it enough to just set the f开发者_如

I'm treating all *.jpg files as static, but I need to serve a few dynamically. Can I simply omit the extension so I don't have to get fancy with my url rules? Is it enough to just set the f开发者_如何学JAVAile type in the header?


I've never had a problem serving dynamic images with a strange extension or no extension at all. Querystrings are also fine.

It will be enough for the headers to be correct and the binary file correctly formed. When you do this make sure you also set the Content-Disposition to a reasonable file name so people don't try to download your files with crazy querystring names. (Which windows users will be unable to save since they will most likely have a "?" in them.)


Instead of omitting the extension (on your server), activate content negotiation (i.e. +MultiViews if you're using Apache) and omit the extensions in your URIs. That way, Apache will decide what file to serve; you could have an image in both png and svg format, and serve the one accepted by the browser.

Generally, a correct Content-type header is enough.

0

精彩评论

暂无评论...
验证码 换一张
取 消