優化 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>