如何在 Wordpress 中缓存 style.min.css 和 Google 字体
How to cache style.min.css and Google font in Wordpress
我被告知我应该缓存上述资源以优化我的网站,但我似乎无法 find/understand 执行此操作的说明。缓存此信息的手动说明是什么?我应该把它们放在哪里?
您也可以为此使用内容分发网络 (CDN)。
CDN 将加快您的网站加载时间。
请查看此处以获得更好的理解:
http://premium.wpmudev.org/blog/top-cdn-services-to-make-your-wordpress-site-blazingly-fast/
使用.htaccess
进行压缩和缓存。将此添加到您的 .htaccess
。请在执行此操作之前备份您的 .htaccess
(为了安全起见)。这将适用于所有可缓存的资源。
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
我被告知我应该缓存上述资源以优化我的网站,但我似乎无法 find/understand 执行此操作的说明。缓存此信息的手动说明是什么?我应该把它们放在哪里?
您也可以为此使用内容分发网络 (CDN)。 CDN 将加快您的网站加载时间。
请查看此处以获得更好的理解: http://premium.wpmudev.org/blog/top-cdn-services-to-make-your-wordpress-site-blazingly-fast/
使用.htaccess
进行压缩和缓存。将此添加到您的 .htaccess
。请在执行此操作之前备份您的 .htaccess
(为了安全起见)。这将适用于所有可缓存的资源。
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>