我正在尝试根据请求图像的文件夹名称构建一个电子邮件跟踪器。
例子:
https://www.example.com/image/123/spager.gif
需要变成这个
https://www.example.com/image/index.php?id=123
作为回报,它将提供 spacer.gif 图像。
这可行吗?如果是的话,我错过了什么?
所以票价我得到了这个:
网络配置:
<rule name="email image tracker">
<match url="^/image/([0-9]+)/spacer.gif">
<action type="Rewrite" url="/image/index.php?id={R:1}" />
</rule>
索引.php:
<?php
header('Content-type: image/gif');
$png_image = imagecreate(150, 150);
imagecolorallocate($png_image, 15, 142, 210);
?>
但我收到错误:
由于发生内部服务器错误,该页面无法显示。
日志文件中没有任何内容可以帮助我获得有关哪些内容不起作用的提示。
侃侃无极
阿晨1998