Home > Backend Development > PHP Tutorial > 为什么我搞的一个自动更新软件不可以下其他格式 只可以下.exe.rar .txt

为什么我搞的一个自动更新软件不可以下其他格式 只可以下.exe.rar .txt

WBOY
Release: 2016-06-23 14:01:42
Original
783 people have browsed it

为什么我搞的一个自动更新软件不可以下其他格式 只可以下.exe.rar .txt

比如把后缀改为 .lua   .ini 就无法下载了  如何解决呢?


回复讨论(解决方案)

哦 自己解决了
一个产品的网站发现RMVB格式的视频不能播放,而rm的格式的影片就可以。
 
win2003做服务器,IIS6默认是不支持RMVB这种扩展名的文件格式的
访问这些类型时,会返回以下信息:HTTP 错误 404 - 文件或目录未找到。

原因: IIS6.0取消了对某些MIME类型的支持,例如ISO,RMVB,致使客户端下载出错。

解决方法:

在站点属性->HTTP头->MIME类型->新建。在随后的对话框中,扩展名填入.rmvb,MIME类型填
 程序代码
application/vnd.rn-realmedia
然后重启IIS即可。

附:
要是你想让IIS支持所有的任何扩展名的文件都可以下载访问的话,新添加一个扩展名为.*,MIME类型为:application/octet-stream (这样会带来安全隐患,不建议这么做)

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template