我有一个特定的文件types的IIS。阻止.notebook。 我试图进入请求过滤,并添加.notebook与允许设置为true,但我仍然得到了404。此文件夹中的任何其他内容将下载,只是这一种types被阻止。
我并不是通过头文件来下载,而是直接input文件的URL。
作为参考,这是在我做出更改时添加到web.config中的相关部分
<security> <requestFiltering allowDoubleEscaping="false"> <fileExtensions> <add fileExtension=".notebook" allowed="true" /> </fileExtensions> </requestFiltering> </security>
将.notebook扩展名添加到IISconfiguration的MIMEtypes。 你将不得不找出MIMEtypes的使用。 也许application/x-smarttech-notebook
。