我正在尝试确定文件的mime类型。在Firefox中,它显示text/cache-manifest
。在Chrome中,F-12 -> Network Tab
在type
下显示为document
。当我查看响应标头时,它从不显示Content-Type
所以我的服务器可能没有发送它?或者我是否解释document
错误?
在.htaccess中,我有:AddType text/cache-manifest .manifest
编辑:我还尝试了以下代码,它仍然在Chrome中显示类型document
:
manifest.php
<?php header("content-type: text/cache-manifest");?>
答案 0 :(得分:1)
“网络”标签根据请求类型(而非mime类型)过滤查询。当您将其请求为文档时(浏览器中的简单http get请求,例如,不是来自image或styles标签),然后将其显示为type = document。 有关更多信息,请参见https://developers.google.com/web/tools/chrome-devtools/network/reference。