not techically a rocket theme issue but hoping someone might be able to help.
When i perform a search, view one of the search results and try to return to the search results, I get "webpage expired".
Someone suggested the following:
If using Joomla - look for the following code in the root index file somewhere around
line 250:-
header( 'Expires: Mon, 26 Jul 1997 05:00:00 GMT' );
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
header( 'Cache-Control: no-store, no-cache, must-revalidate' );
header( 'Cache-Control: post-check=0, pre-check=0', false );
header( 'Pragma: no-cache' );
and change it to the following:-
header( 'Expires: Mon, 26 Jul 1997 05:00:00 GMT' );
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
header( 'Cache-Control: private, max-age=10800, pre-check=10800' );
header( 'Cache-Control: post-check=0, pre-check=0', false );
Guess I'm being dumb but index.php in the root directory only has 88 lines and no refercne to the above.
Where should I be looking to make the above changes.