我可以在没有 http 处理程序的情况下隐藏 ASP.NET 页面上的图像路径吗?

发布于 2024-08-29 12:41:55 字数 134 浏览 5 评论 0原文

我的网站结构中的目录下有许多静态图像,并且我不关心图像的热链接或复制保护。由于多种原因,我需要做的不是在网站上显示图像路径(或显示假路径)。

有没有什么方法可以在不求助于 http 处理程序或辅助 asp.net 页面的情况下执行此操作?

I have many static images under a directory in my site structure, and I'm not concerned with hotlinking or copy-protecting the images. For a myriad of reasons, what I need to do is not show the image path on the site (or show a fake one).

Is there any way to do this without resorting to an http handler or a worker asp.net page?

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

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

发布评论

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

评论(2

半窗疏影 2024-09-05 12:41:55

您可以使用URL重写。如果您自己执行此操作,则需要您实现自定义处理程序,但您可以尝试已有的第三方选项。

然而,我猜测作为 ASHX 端点实现的简单 http 处理程序可能是最简单的选择。

You could use URL Rewritting. Doing it yourself would require you to implement a custom handler but there are third party options already available you could try.

I would guess however that a simple http handler implemented as an ASHX endpoint would probably be the easiest option.

永不分离 2024-09-05 12:41:55

您可以为此使用通用 ASHX 处理程序

You could use a generic ASHX handler for this.

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