hi
i want to show current time in my cached pages
so i create ESI tag for display time in my html page
	
	
	
		
in time.php file there a simple script that print time
	
	
	
		
and in my .htaccess, i write the following codes
	
	
	
		
but in the response html page, time also cached by litespeed and it shows same time in each response not the fresh time!
								i want to show current time in my cached pages
so i create ESI tag for display time in my html page
		HTML:
	
	<esi:include src="/time.php" />
	
		PHP:
	
	<?php
echo date("Y/m/d H:i:s");
?>
	
		Code:
	
	RewriteCond %{ORG_REQ_URI} !^/time.php
RewriteRule .* - [E=Cache-Control:max-age=120]