需要有关如何保护 .exe 文件不被其他网站直接下载的想法
我们的应用程序存储在我们的服务器上,它是一个 .exe 文件。下载页面只能从我们的网站访问 - 使用 PHP 中的 cookie 身份验证。我知道有更好的方法,但这背后有一个很长的故事......所以我继续前进。问题是 .exe 的实际 URL 已被泄露并出现在其他网站上。保护文件链接而不是页面本身的最佳方法是什么?这就是我遇到问题的地方。我可以使访问下载页面(带有链接)变得困难,但不知道从哪里开始以确保只能从我们的网站访问该链接....htaccess(防止热链接)是最好的方法吗?
We have our application stored on our server, it is an .exe file. The download page is only accessible from our site - using cookie authentication in PHP. I know there are better methods but there is a long story behind this...so I'm moving on. The issue is that the actual url of the .exe has been leaked and is appearing on other websites. What is the best method to protect a link to a file, not the page itself. That is where I'm having issues. I can make it difficult to get to the download page (with the link) but don't know where to begin to make sure the link is only accessible from our site... Is .htaccess (preventing hotlinking) the best way to go?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,.htaccess 可能是最好的。查找任何有关保护图像免遭热链接的在线帖子,我的谷歌搜索中的第一个看起来像是一个不错且简单的 auto-您可以使用生成器。只需将图像扩展名更改为 exe,或者如果您也希望它们受到保护,则保留它们。
Yes, .htaccess is probably best. Find any online post about protecting images from hotlinking, the first in my google search looks like a nice and easy auto-generator you can use. Just change the image extensions to exe, or keep them if you want them protected too.