in effetti ho risolto con php con codice sottostante
che tu sappia riesco a impedire al browser di usare eventi.html della cache e caricare ogni volta quello nuovo?
<?php
if (file_exists('./eventi.html')) {
header('Location: eventi.html');
}
else {
header('Location: index-0.html');
}
?>