|
The default cache policy is conservative, do not cache request/response with cookies, do not cache request/response when cache-control does not allow caching.
So, try a simple page like phpinfo() page first, on client side, check the request/response header with firebug to make sure there is no header that could prevent LSWS from caching the response.
Once phpinfo() page works, then you can start to check the other pages, and fine tune the cache policy carefully. It is not recommended to ignore the cache control header unless you know what you are doing and the page is safe to be cached.
|