Я попробовал эти два метода для предотвращения кэширования (принудительной перезагрузки изображения) с помощью PHP и JavaScript / jQuery, но я все еще получаю изображение из кэша, когда загружаю контент через ajax,
PHP:
// Generate a number that will never be repeated using the time function
// that "returns the current time measured in the number of seconds since
// the Unix Epoch (January 1 1970 00:00:00 GMT)"
$cachekiller = time();
// Include the generated number in the image URL
<img src="path/to/image.png?{$cachekiller}"
Javascript / JQuery:
// Generate random number between 1 and 1000.
var cachekiller = Math.floor(Math.random()*1001);
$("#thumbnail").attr("src", "path/to/image.png?"+cachekiller);
Что еще я могу сделать?