Cache Control fails

前端 未结 2 1960
隐瞒了意图╮
隐瞒了意图╮ 2021-01-25 00:08

My index.php page keeps being cached, showing old timer values and others, even though I\'m using this:

session_cache_limiter( \'nocache\' );
session_start( );
h         


        
2条回答
  •  迷失自我
    2021-01-25 00:32

    Set the cache expiration date to an old date.

    header( 'Expires: Fri, 01 Jan 2010 00:00:00 GMT' );
    

提交回复
热议问题