Advertisement
firoze

ব্রাউজারের ক্যাশিং বাড়িয়ে দিয়ে ওয়ার্ডপ্রেস সাইট দ্রুত লোড কর

May 9th, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. // ব্রাউজারের ক্যাশিং বাড়িয়ে দিয়ে ওয়ার্ডপ্রেস সাইট দ্রুত লোড করুন
  2.  
  3. # EXPIRES CACHING
  4. <IfModule mod_expires.c>
  5. ExpiresActive On
  6. ExpiresByType image/jpg "access 1 year"
  7. ExpiresByType image/jpeg "access 1 year"
  8. ExpiresByType image/gif "access 1 year"
  9. ExpiresByType image/png "access 1 year"
  10. ExpiresByType text/css "access 1 month"
  11. ExpiresByType application/pdf "access 1 month"
  12. ExpiresByType text/x-javascript "access 1 month"
  13. ExpiresByType application/x-shockwave-flash "access 1 month"
  14. ExpiresByType image/x-icon "access 1 year"
  15. ExpiresDefault "access 2 days"
  16. </IfModule>
  17. # EXPIRES CACHING
  18.  
  19.  
  20. source link and usage guide:http://wpcookbook.net/leverage-browser-caching-wordpress/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement