答案 0 :(得分:0)
您必须使资源动态化(由服务器端处理(如php)提供服务)。 URL重写是保持相同URL的关键。
答案 1 :(得分:0)
这是一个示例脚本,可以在每次加载时生成随机图像(只是噪声)。
需要GD库才能运行。
<?php
header("Content-Type: image/png");
$width = 200;
$height = 200;
$im = @imagecreate($width, $height) or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$color = imagecolorallocate($im, 233, 14, 91);
// loop each pixel
for($x=0;$x<$width;$x++) {
for($y=0;$y<$height;$y++) {
// should we draw a dot
if(rand(0, 1)==1) imagesetpixel($im, $x, $y, $color);
}
}
imagepng($im);
imagedestroy($im);