Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网站,现在我想提高网站的页面速度,所以我想 gzip javascript、css 文件,任何人都可以建议我并解释一下如何...
当您使用 apache 网络服务器时,您可以将以下配置添加到服务器配置或 .htaccess 文件中:
<IfModule mod_deflate.c> <LocationMatch "\.(css|js|x?html?|php)$"> SetOutputFilter DEFLATE </LocationMatch> </IfModule>