d-f-d/donetsk/master/components/.htaccess - Htaccess File

d-f-d/donetsk/master/components/.htaccess

<IfModule mod_headers.c>
  # Serve gzip compressed CSS files if they exist and the client accepts gzip.
  RewriteCond %{HTTP:Accept-encoding} gzip
  RewriteCond %{REQUEST_FILENAME}.gz -s
  RewriteRule ^(.*).css $1.css.gz [QSA]

  # Serve gzip compressed JS files if they exist and the client accepts gzip.
  RewriteCond %{HTTP:Accept-encoding} gzip
  RewriteCond %{REQUEST_FILENAME}.gz -s
  RewriteRule ^(.*).js $1.js.gz [QSA]

  # Serve gzip compressed JS files if they exist and the client accepts gzip.
  RewriteCond %{HTTP:Accept-encoding} gzip
  RewriteCond %{REQUEST_FILENAME}.gz -s
  RewriteRule ^(.*).html $1.html.gz [QSA]

  # Serve correct content types, and prevent mod_deflate double gzip.
  RewriteRule .css.gz$ - [T=text/css,E=no-gzip:1]
  RewriteRule .js.gz$ - [T=text/javascript,E=no-gzip:1]
  RewriteRule .html.gz$ - [T=text/html,E=no-gzip:1]

  <FilesMatch "(.js.gz|.css.gz|.html.gz)$">
    # Serve correct encoding type.
    Header set Content-Encoding gzip
    # Force proxies to cache gzipped & non-gzipped css/js files separately.
    Header append Vary Accept-Encoding
  </FilesMatch>
</IfModule>

On Github License

Files

Download PDF of Htaccess file
no-gzip, REQUEST_FILENAME

Comments

Apache