利用 Amazon EC2 上的浏览器缓存
Leverage browser caching on Amazon EC2
这是我第一次使用 Amazon AWS 进行任何托管,我已经在下面上传了我常用的代码,以帮助浏览器缓存,似乎 GT Metrix 和 Google 页面速度之类的工具不是看到它的工作。
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"
</IfModule>
如果我需要在 Amazon 端启用任何功能才能正常工作,有什么想法吗?
提前致谢。
经过一番调查后发现我们的实例上没有安装为此所需的 Apache 模块。
您需要做的是以 root 用户身份通过 ssh 进入您的服务器,然后运行执行以下命令
使用此命令检查安装了哪些模块
apache2ctl -M
并寻找 expires_module
。它可能不存在。
启用浏览器缓存
sudo a2enmod expires
重启apache
sudo service apache2 restart
这是我第一次使用 Amazon AWS 进行任何托管,我已经在下面上传了我常用的代码,以帮助浏览器缓存,似乎 GT Metrix 和 Google 页面速度之类的工具不是看到它的工作。
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"
</IfModule>
如果我需要在 Amazon 端启用任何功能才能正常工作,有什么想法吗?
提前致谢。
经过一番调查后发现我们的实例上没有安装为此所需的 Apache 模块。
您需要做的是以 root 用户身份通过 ssh 进入您的服务器,然后运行执行以下命令
使用此命令检查安装了哪些模块
apache2ctl -M
并寻找 expires_module
。它可能不存在。
启用浏览器缓存
sudo a2enmod expires
重启apache
sudo service apache2 restart