`
sogo6
  • 浏览: 113971 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

Specify a Vary :Accept-Encoding Header解决办法

    博客分类:
  • web
 
阅读更多
在用Google的PageSpeed或Yahoo!的Y!Slow查看网页速度时,会看到“…specify a vary: accept-encoding header”的建议,那么怎么来解决这个问题呢?

在博客程序的根目录下找到.htaccess文件,然后文本编辑器编辑它。在文件最后添加下面的代码:

<IfModule mod_headers.c>
  <FilesMatch “\.(js|css|xml|gz)$”>
    Header append Vary Accept-Encoding
  </FilesMatch>
</IfModule>


刷新一下看看,OK?
分享到:
评论

相关推荐

    官网下载:Windows-KB841290-x86-ENU.zip

    xml version="1.0" encoding="utf-8"?&gt; &lt;name&gt; &lt;MD5&gt; &lt;SHA1&gt; &lt;/FCIV&gt; 5.Verification: --------------- You can build a hash database of your sensitive files and verify them regularily or ...

    Pycharm管理解释器报错:Please specify a different SDK name-解决方法

    Pycharm管理解释器报错:Please specify a different SDK name-解决方法

    kubernetes-dashboard.yaml

    # Uncomment the following line to manually specify Kubernetes API server Host # If not specified, Dashboard will attempt to auto discover the API server and connect # to it. Uncomment only if the ...

    谷歌地图 delphi 封装库 2013 0.1.9 全面支持google maps api

    - Improvement: TMarker =&gt; added Icon property to specify the icon to show into a map. Can be a file into your PC or an image on the web. - Improvement: TGMMarker =&gt; added OnIconChange event. - ...

    基于TLS的轻量级隧道VPN项目源码+项目说明文档(支持高性能的路由模式和转发模式).zip

    基于TLS的轻量级隧道VPN项目源码+项目说明文档(支持高性能的路由模式和转发模式).zip 【项目简介】 安装编译环境 apt-get install make gcc openssl libssl-dev ...# -c &lt;dir&gt; Specify the configuration di

    ftp可登录但是无法下载,上传问题解决

    $ pftp -v -A -d 211.159.185.xxx Connected to 211.159.185.198 (211.159.185.xxx). 220 (vsFTPd 3.0.2) Name (211.159.185.xxx:liangzh): lebaFtpUser ---&gt; USER lebaFtpUser 331 Please specify the ...

    Android代码-android-proguards

    android proguards Use one line to apply almost famous libraries of proguard configurations: compile '...That's it. Installation Via jcenter ...Specify RxJava proguard rules: rep

    itk,错误:use /Zm to specify a higher limit解决办法

    use /Zm to specify a higher limit ``` 此错误表明编译器内部堆栈空间已达到限制,导致编译无法继续。通常这种问题出现在包含大量头文件或者依赖复杂模板元编程的大型项目中。下面将详细介绍如何解决这一问题。 ...

    pycurl-7.43.0.3-cp27-cp27m-win-amd64.whl

    Windos下安装pyspider报错:Please specify --curl-dir=/path/to/built/libcurl Windos下安装pyspider报错:Please specify --curl-dir=/path/to/built/libcurl Windos下安装pyspider报错:Please specify --curl-dir=/...

    allegro skill functions prefixed axl

    - Specify the output directory and file naming conventions. - **Component List Generation:** - Use `axl:get-components` to get a list of all components. - Iterate through the list and use `axl:get...

    Crypt-ZCert:Crypt-ZCert 的只读发布历史

    my $zcert = Crypt::ZCert-&gt;new( public_file =&gt; "/foo/mycert", # Optionally specify a secret file; # defaults to "${public_file}_secret": secret_file =&gt; "/foo/sekrit",);# Loaded from existing 'secret_...

    AUTOCAD學習資料

    - 命令行提示`Specify next point or [Close/Undo]:`时,输入下一点或输入`C`封闭直线或撤销。 2. **Circle(圆)**: - 绘制圆。 - 圆心确定位置,半径确定大小。 - 支持多种绘制方式,如圆心+半径、圆心+直径...

    boostdesc_bgm.i,vgg_generated_48.i等.zip

    To use proxy please check/specify these environment variables: - http_proxy/https_proxy - and/or HTTP_PROXY/HTTPS_PROXY 可以下载本资源结合我的博文(https://editor.csdn.net/md/?articleId=121682921)...

    mobiscroll-master插件--支持设置初始值

    theme: 'android-holo', // Specify theme like: theme: 'ios' or omit setting to use default mode: mode, // Specify scroller mode like: mode: 'mixed' or omit setting to use default display: display,...

    mysql中错误:1093-You can’t specify target table for update in FROM clause的解决方法

    在MySQL数据库操作中,有时会遇到一个特定的错误:1093 - You can’t specify target table for update in FROM clause。这个错误通常发生在尝试在一个`UPDATE`语句的`FROM`子句中直接引用目标更新表时。MySQL不支持...

    wget改进版pwget.zip

    -c --cokiefile: specify a cookie file to use -o --overwrite: force overwritting of files -m --mirror: only download if size differs -t --time: time to sleep between requests in seconds (float) ...

    linux mount报错:you must specify the filesystem type的解决方法

    然而,当你尝试挂载一个新的设备,如 `/dev/vdb` 到某个目录,如 `/home` 时,可能会遇到一个错误提示:“`mount: you must specify the filesystem type`”。这个错误表明Linux系统无法确定你想要挂载的设备的文件...

    编译好的x265,带y4m文件

    --[no-]slow-firstpass Enable a slow first pass in a multipass rate control mode. Default disabled --analysis-mode |int&gt; save - Dump analysis info into file, load - Load analysis buffers from the ...

    Android代码-rotate-layout

    Rotate Layout ...Layout measures itself in a correct way. This means that if original view is 50x100, then 90 degree rotated it will measure itself as 100x50 and can fit in another layouts with t

    SSH错误集锦

    1. javax.servlet.ServletException: Must specify type attribute if name is specified 这个错误通常发生在 JSP 页面中标签中定义了 name 属性,但没有定义 type 属性。解决方法是检查 JSP 页面中标签的定义,...

Global site tag (gtag.js) - Google Analytics