@vladimir Используйте заголовки Cache-Control чтобы убрать кэш в PHP как пример:
1 2 3 4 5 |
<?php header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); |