我在Windows 7上使用IIS Web服务器7.5来托管我的项目.我尝试创建Javascript和CSS处理程序,可以优化和压缩Javascript和Css文件大小.但我发现了一些问题.请查看我在Firefox 3.0.11浏览器上的Firebug中找到的Test.css文件的以下请求和响应.
响应标题
Cache-Control : private Content-Type : text/html Content-Encoding : gzip Server : Microsoft-IIS/7.5 X-AspNet-Version : 2.0.50727 X-Powered-By : ASP.NET Date : Tue, 30 Jun 2009 10:46:15 GMT Content-Length : 197
请求标题
Host : localhost User-Agent : Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 4.0.20506) Accept : text/css,*/*;q=0.1 Accept-Language : en-us,en;q=0.5 Accept-Encoding : gzip,deflate Accept-Charset : ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive : 300 Connection : keep-alive If-Modified-Since : Tue, 30 Jun 2009 10:41:00 GMT If-None-Match : "1C9F96F41F48600" Cache-Control : max-age=0
此外,我打开了test.css文件的响应选项卡,发现CSS文件已成功加载.我尝试在Chrome 3,Safari 4.0,Opera 10.0等其他浏览器中打开同一页面.但是除了IE 8之外,所有浏览器都无法显示正确的网页.为什么?
body{margin:0;padding:0;background:#f7f7f7 url(Photoes/bg.jpg) no-repeat center top;}
PS.我尝试禁用压缩器,所有浏览器都可以正确显示.
您的响应标题是incorret:
Content-Type : text/html
应该
Content-Type : text/css