我正在尝试使用 php 和 htaccess 跟踪热链接器的 IP 地址。
.htaccess 文件:
RewriteEngine on
RewriteRule images/(.+)\.(jpg|gif|png) images.php
图像.php
?php
$ipAddress = $_SERVER['REMOTE_ADDR'];
$statement=$db->prepare("INSERT INTO `ipaddress` (`ip` )
VALUES (?)");
$statement->execute(array($ipAddress));
?>
现在用户请求像 www.domain.com/images/image.jpg 这样的图像,它将重定向到 images.php 并跟踪他们的 ips。我在这里面临的问题是我的页面内部没有显示图像(原因 htaccess 将其重定向到 images.php)。我该如何解决这个问题?
我不是 htaccess 专家,所以需要更多解释
谢谢