我在 .htaccess 文件中放置了一个简单的缓存控件:
#cache css and javascript files for one week
<FilesMatch ".(js|css)$">
Header set Cache-Control "max-age=604800"
</FilesMatch>
当我在 Google 的页面站点测试器上测试桌面站点时:https ://developers.google.com/speed/pagespeed/insights ...它显示 javascript 和图像正在正确缓存。但是,当我测试我的移动网站时,缓存不起作用。我的 htaccess 文件与我的所有桌面文件(即 public_html/index.html、public_html/images/、public_html/css/、public_html/.htaccess 等)一起包含在 public_html 目录中。我的移动站点包含在此处:public_html/mobile /。
我是否需要向移动目录添加第二个 .htaccess 文件才能使其正常工作?
谢谢。