防止直接在浏览器中打开图像

发布于 2024-11-26 00:43:40 字数 344 浏览 0 评论 0原文

我有一个包含图片 1.jpg、2.jpg、3.jpg 的文件夹...有什么方法可以阻止用户直接在浏览器中输入像 www.example.com/pictures/3.jpg 这样的 URL 并加载该图像?

如果 Web html 调用该图像,则应加载该图像 (< img href=...)。

这可能吗?使用 IIS URL 重写或其他技术?

我使用的是IIS7.5。我的目标是防止用户看到下一张图像...我知道,我可以对名称进行编码,但我有一些从 1 到 1000 的旧数据库,我想以某种方式阻止用户不使用 url 浏览没有推荐人...因为每天我都提供一张照片,我不希望他们找到其余的...

这可能吗?

I have a folder with pictures 1.jpg, 2.jpg, 3.jpg... Is there any way to prevent user to type the URL like www.example.com/pictures/3.jpg directly into browser and loading that image?

The image should be loaded if web html calls it (< img href=...).

Is that possible to do? Using IIS URL Rewrite or some other technique?

I am using IIS7.5. My goal is to prevent users to see the next image... I know, I could have names encoded, but I have some old database that goes from 1-1000 and I'd somehow like to prevent just users not to browse using url with no refferer... Because every day I am serving one picture and I don't want that they find the rest...

Is that possible at all?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉睡月亮 2024-12-03 00:43:40

您可以尝试通过依赖 HTTP_REFERRER 进行网址重写,但这并不总是准确的,并且可能会阻止某些浏览器上的用户查看您网站上的图像。

如果我是你,我会将所有图像移到 Web 目录之外(或者最好完全阻止 pictures 文件夹),然后构建一个名为 image.php 的 php 脚本:

<?php

define('NUM_IMAGES', 1000);

header('Content-Type: image/png');

$image = imagecreatefromjpeg('pictures/'.((int)(time()/86400)%NUM_IMAGES+1).'.jpg');
imagepng($image);

?>

上面的脚本将输出向用户浏览器发送的图像每天会按顺序更改为下一个图像,您可以像这样使用它:

然后,由于您的图像文件夹被阻止,没有人可以看到任何其他图像。然后仍然可以直接请求 image.php,但他们只能看到当天的图像。

如果您不想每天自动旋转一次并希望手动控制显示的图像,您也可以替换 '.((int)(time()/86400)%1000+1).'。 与您要显示的图像的编号。

如果您确实希望它自动旋转,但想要控制它更新的时间,您可以向 time() 添加偏移量,例如:((time()+$offset)/86400 )

You can try it with a url rewrite by relying on HTTP_REFERRER but that's not always accurate and could possibly block users on some browsers from seeing the images on your site as well.

If I were you I would move all of your images outside your web directory (or preferably just block the pictures folder altogether) and then build a php script like this called image.php:

<?php

define('NUM_IMAGES', 1000);

header('Content-Type: image/png');

$image = imagecreatefromjpeg('pictures/'.((int)(time()/86400)%NUM_IMAGES+1).'.jpg');
imagepng($image);

?>

The script above will output an image to the users browser which will change once a day to the next image in sequence and you can use it like: <img src="image.php" />

Then, since your images folder is blocked, nobody can see any other image. Then can still request image.php directly but they'll only see the image of the day.

If you don't want to rotate automatically once a day and want manual control over which image it shows you can also just replace the '.((int)(time()/86400)%1000+1).' with the number of the image you want to display .

If you do want it to rotate automatically, but want to control the time it updates at you can add an offset to time() like: ((time()+$offset)/86400)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文