Posts Kích hoạt nén bằng gzip trên htaccess
Post
Cancel

Kích hoạt nén bằng gzip trên htaccess

Gzip là một phương pháp nén tập tin hay tìm những chuỗi tương tự nhau trong file text và thay thế những chuỗi đó bằng ký tự ngắn gọn hơn, kết quả là sẽ giúp file nhỏ hơn.

Hoạt động: server gửi xuống trình duyệt dưới dạng gzip và trình duyệt giải nén các file gzip, chuyển chúng về dạng nguyên gốc.

Nén Gzip rất có ích của cho môi trường web vì HTML, CSS files sử dụng rất nhiều chữ và khoảng trống. Vì vậy kết quả cuối cùng sau khi gzip nén file, kích thước của trang và CSS có thể giảm tới 60-70%.

CHÚ Ý: Gzip tăng tốc độ của site của bạn, nhưng bù lại nó dùng nhiều CPU hơn. Trước khi kích hoạt nó, hãy chắc rằng tài nguyên CPU ổn định.

Thêm đoạn dưới vào file .htaccess

Bật nén gzip thông qua mod_deflate:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<IfModule mod_deflate.c>
	AddOutputFilterByType DEFLATE text/html
	AddOutputFilterByType DEFLATE text/css
	AddOutputFilterByType DEFLATE text/javascript
	AddOutputFilterByType DEFLATE text/xml
	AddOutputFilterByType DEFLATE text/plain
	AddOutputFilterByType DEFLATE image/x-icon
	AddOutputFilterByType DEFLATE image/svg+xml
	AddOutputFilterByType DEFLATE application/rss+xml
	AddOutputFilterByType DEFLATE application/javascript
	AddOutputFilterByType DEFLATE application/x-javascript
	AddOutputFilterByType DEFLATE application/xml
	AddOutputFilterByType DEFLATE application/xhtml+xml
	AddOutputFilterByType DEFLATE application/x-font  
	AddOutputFilterByType DEFLATE application/x-font-truetype  
	AddOutputFilterByType DEFLATE application/x-font-ttf  
	AddOutputFilterByType DEFLATE application/x-font-otf
	AddOutputFilterByType DEFLATE application/x-font-opentype
	AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
	AddOutputFilterByType DEFLATE font/ttf
	AddOutputFilterByType DEFLATE font/otf
	AddOutputFilterByType DEFLATE font/opentype
	# For Older Browsers Which Can’t Handle Compression
	BrowserMatch ^Mozilla/4 gzip-only-text/html
	BrowserMatch ^Mozilla/4\.0[678] no-gzip
	BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</IfModule>

Nếu server bạn không hỗ trợ mod_deflate thì sử dụng mod_gzip:

1
2
3
4
5
6
7
8
9
10
<ifModule mod_gzip.c>
	mod_gzip_on Yes
	mod_gzip_dechunk Yes
	mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
	mod_gzip_item_include handler ^cgi-script$
	mod_gzip_item_include mime ^text/.*
	mod_gzip_item_include mime ^application/x-javascript.*
	mod_gzip_item_exclude mime ^image/.*
	mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>

Có thể kiểm tra trang web bật Gzip chưa bằng cách nhấn F12 trên web:

This post is licensed under CC BY 4.0 by the author.

Contents