Les CSS et JS ne fonctionnent pas en utilisant la fonction compresser et aggréger de DRUPAL

Le problème vient du .HTACCESS qu'il faut modifier vers la fin :

Remplacer (ou mettre en commentaire) :

#    <FilesMatch "(\.js\.gz|\.css\.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>

par :

  <FilesMatch "(\.js\.gz)$">
      # Serve correct content type.
      Header set Content-Type text/javascript
      # Serve correct encoding type.
      Header set Content-Encoding gzip
      # Force proxies to cache gzipped & non-gzipped js files separately.
      Header append Vary Accept-Encoding
  </FilesMatch>
     <FilesMatch "(\.css\.gz)$">
      # Serve correct content type.
      Header set Content-Type text/css
      # Serve correct encoding type.
      Header set Content-Encoding gzip
      # Force proxies to cache gzipped & non-gzipped css files separately.
      Header append Vary Accept-Encoding
    </FilesMatch>
Evaluer ce contenu: