我刚刚安装了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?