我的服务器上有 litespeed,正在尝试使用缓存系统。我已关注维基百科说明。
在我的 Magento 中有这个.htaccess
RewriteRule (.*\.php)?$ - [L,E=Cache-Control:max-age=120]
当我获得标头命中时,缓存正在工作,X-response
但我找不到从缓存中排除管理区域的方法。
答案1
在您的 RewriteRule 之前添加以下行:
RewriteCond %{ORG_REQ_URI} !^/admin/
RewriteCond %{ORG_REQ_URI} !^/admin$
RewriteCond %{ORG_REQ_URI} !^/index.php/admin/
RewriteCond %{ORG_REQ_URI} !^/index.php/admin$