电子邮件中的图片标记:
<img src="http://www.mydomain.com/image.php?lastest=1">
image.php脚本的一部分:
case 'image/gif': header('Content-type: image/gif');$img=@imagecreatefromgif($image['src']);if($img) {imagegif($img);imagedestroy($img);}
break;
但我怎么能用这张图片做同样的事呢?
http://www.anotherdomain.com/image.gif
感谢。
答案 0 :(得分:0)
使用.htaccess并重定向请求,例如:
RewriteRule image.gif$ /image.php?lastest=1 [l]