优化 Magento 更改 .htaccess 文件
Magento 是一个非常受欢迎的电子商务应用程序。它从初始安装提供了大量的自定义和功能。以下是优化 Magento 安装的一些建议。
启用输出压缩
在 Magento 的 .htaccess 文件中,你将找到以该行开头的文本部分,
<IfModule mod_deflate.c> and ending at </IfModule>
这部分代码可用于打开 Apache 的 mod_deflate 模块,该模块为 text,css 和 javascript 提供压缩。你将要取消注释(删除#符号)多行,使其看起来像这样:
############################################
启用 apache 服务文件压缩
http://developer.yahoo.com/performance/rules.html#gzip
# Insert filter on all content
SetOutputFilter DEFLATE
# Insert filter on selected content types only
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript
# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Don't compress images
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</IfModule>