为了账号安全,请及时绑定邮箱和手机立即绑定

IIS URL 重写重定向到图像以跟踪电子邮件视图

IIS URL 重写重定向到图像以跟踪电子邮件视图

PHP
翻阅古今 2023-10-15 15:43:22
我正在尝试根据请求图像的文件夹名称构建一个电子邮件跟踪器。例子: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);?>但我收到错误:由于发生内部服务器错误,该页面无法显示。日志文件中没有任何内容可以帮助我获得有关哪些内容不起作用的提示。
查看完整描述

2 回答

?
侃侃无极

TA贡献2051条经验 获得超10个赞

我认为请求 URL 应该是https://www.example.com/image/123/spacer.gif而不是https://www.example.com/image/123/spager.gif。


其次,如果你应用这个规则。请设置为


<match url="^image/([0-9]+)/spacer.gif">

代替


<match url="^/image/([0-9]+)/spacer.gif">

第一个斜杠“/”不包含在此段中。


<rule name="email image tracker" enabled="true" stopProcessing="true">

                <match url="^image/([0-9]+)/spacer.gif" />

                <action type="Rewrite" url="/image/index.php?id={R:1}" />

            </rule>

此规则会将 /image/123/spacer.gif 重写为 /image/index.php?id=123。但是,由于 php 页面需要从https://www.example.com/image/123/spacer.gif请求资源 。由于循环,图像被损坏。


我认为您可以尝试使用出站规则重写index.php 中的src 标记。

https://img1.sycdn.imooc.com/652b98560001b38504560094.jpg

https://img1.sycdn.imooc.com/652b985c0001c03605010133.jpg

查看完整回答
反对 回复 2023-10-15
?
阿晨1998

TA贡献2037条经验 获得超6个赞

我的配置文件位于图像文件夹内,因此将图像作为匹配的一部分删除。


最后也<match ... />失踪了。/>


<?xml version="1.0" encoding="UTF-8"?>

<configuration>

    <system.webServer>

        <rewrite>

            <rules>

                <rule name="email_image_tracker" stopProcessing="true">

                    <match url="^([0-9]+)/spacer.gif" />

                    <action type="Rewrite" url="/i/index.php?id={R:1}" />

                </rule>

            </rules>

        </rewrite>

    </system.webServer>

</configuration>


查看完整回答
反对 回复 2023-10-15
  • 2 回答
  • 0 关注
  • 80 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信