我可以在没有 http 处理程序的情况下隐藏 ASP.NET 页面上的图像路径吗?
我的网站结构中的目录下有许多静态图像,并且我不关心图像的热链接或复制保护。由于多种原因,我需要做的不是在网站上显示图像路径(或显示假路径)。
有没有什么方法可以在不求助于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用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.
您可以为此使用通用 ASHX 处理程序。
You could use a generic ASHX handler for this.