Advertisement
Guest User

কোন প্লাগিন ছাড়াই আপনার ওয়ার্ডপ্রেস সাইটের স্পিড বাড়িয়ে নিন

a guest
Feb 26th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1.  
  2. # BEGIN GZIP COMPRESSION
  3. <IfModule mod_gzip.c>
  4. mod_gzip_on Yes
  5. mod_gzip_dechunk Yes
  6. mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
  7. mod_gzip_item_include handler ^cgi-script$
  8. mod_gzip_item_include mime ^text/.*
  9. mod_gzip_item_include mime ^application/x-javascript.*
  10. mod_gzip_item_exclude mime ^image/.*
  11. mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
  12. </IfModule>
  13. # END GZIP COMPRESSION
  14.  
  15. # BEGIN DEFLATE COMPRESSION
  16. <IfModule mod_filter.c>
  17. AddOutputFilterByType DEFLATE "application/atom+xml" \
  18. "application/javascript" \
  19. "application/json" \
  20. "application/ld+json" \
  21. "application/manifest+json" \
  22. "application/rdf+xml" \
  23. "application/rss+xml" \
  24. "application/schema+json" \
  25. "application/vnd.geo+json" \
  26. "application/vnd.ms-fontobject" \
  27. "application/x-font-ttf" \
  28. "application/x-javascript" \
  29. "application/x-web-app-manifest+json" \
  30. "application/xhtml+xml" \
  31. "application/xml" \
  32. "font/eot" \
  33. "font/opentype" \
  34. "image/bmp" \
  35. "image/svg+xml" \
  36. "image/vnd.microsoft.icon" \
  37. "image/x-icon" \
  38. "text/cache-manifest" \
  39. "text/css" \
  40. "text/html" \
  41. "text/javascript" \
  42. "text/plain" \
  43. "text/vcard" \
  44. "text/vnd.rim.location.xloc" \
  45. "text/vtt" \
  46. "text/x-component" \
  47. "text/x-cross-domain-policy" \
  48. "text/xml"
  49. </IfModule>
  50. # END DEFLATE COMPRESSION
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement