LS cache settings for Magento
Hi, thanks for the response, I seem to have it working using these settings
Enable Cache No
Cache Expire Time (seconds) Not Set
Cache Request with Query String Yes
Cache Request with Cookie Yes
Cache Response with Cookie Yes
Ignore Request Cache-Control Yes
Ignore Response Cache-Control Yes
Enable Private Cache Yes
Private Cache Expire Time (seconds)120
.htacess :
RewriteEngine on
RewriteCond %{ORG_REQ_URI} !^/checkout/
RewriteCond %{ORG_REQ_URI} !^/downloader
RewriteCond %{ORG_REQ_URI} !^/index.php/admin
RewriteCond %{ORG_REQ_URI} !^/customer
# cache for 2 mins for php pages only
RewriteRule (.*\.php)?$ - [E=Cache-Control:max-age=120]
I have set the Use Web Server Rewrites to "Yes" then put "index.php" in front of /admin above and taken out the "L" in [L,E=Cache-Control:max-age=120]
I will test further and update this thread...
Thanks for your help
|