nginx在某些png图像中禁止使用

时间:2015-07-01 10:56:42

标签: nginx

我刚刚安装了nginx来为我的网站服务。 当我加载页面时,我正在

function postDigest(callback){    
  var unregister = $rootScope.$watch(function(){  
    unregister();
    $timeout(function(){
      callback();
      postDigest(callback);
    },0,false);       
  });
}

postDigest(function(){
  console.log('do something');
})

对于某些图片,响应标题

403 Forbidden

我检查了mime.types文件,我找到了一条记录

Content-Type: text/html

如何将这些图像的内容类型更改为png?

0 个答案:

没有答案