php - Setting nocache but still caching -
php - Setting nocache but still caching -
i'm using session_cache_limiter('nocache') on page don't want cached, it's still caching.
anything have forgotten?
thank you
try
header('cache-control: no-cache, no-store, must-revalidate, max-age=0'); header('expires: '.gmdate('d, d m y h:i:s', time() - 24 * 3600).' gmt'); header('pragma: no-cache'); php caching
Comments
Post a Comment