如何在Chrome中查看mime类型?它在“网络”选项卡下显示“文档”

时间:2015-08-18 22:19:10

标签: html5 .htaccess google-chrome

我正在尝试确定文件的mime类型。在Firefox中,它显示text/cache-manifest。在Chrome中,F-12 -> Network Tabtype下显示为document。当我查看响应标头时,它从不显示Content-Type所以我的服务器可能没有发送它?或者我是否解释document错误?

在.htaccess中,我有:AddType text/cache-manifest .manifest

编辑:我还尝试了以下代码,它仍然在Chrome中显示类型document

manifest.php

<?php header("content-type: text/cache-manifest");?>

1 个答案:

答案 0 :(得分:1)

“网络”标签根据请求类型(而非mime类型)过滤查询。当您将其请求为文档时(浏览器中的简单http get请求,例如,不是来自image或styles标签),然后将其显示为type = document。 有关更多信息,请参见https://developers.google.com/web/tools/chrome-devtools/network/reference