我试图从外部来源包含css.gz,但仍无法在所有浏览器上使用
<link rel="stylesheet" type="text/css" media="all" href="http://www.website.com/style.css.gz" />
我不知道是什么问题
(我的网络服务器:nginx,测试服务器:apache)
感谢
答案 0 :(得分:1)
如果您有权访问.htaccess文件,则可以使用此脚本仅向支持它的浏览器gzip css:
# This uses mod_deflate, which is pretty standard on Apache 2. Loading
# mod_deflate looks like this:
#
# LoadModule deflate_module modules/mod_deflate.so
#
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \\bMSIE !no-gzip !gzip-only-text/html
查看原始帖子:How can I make my .htaccess file allow Safari & other browsers to open GZIP?