每个用户帐户的 IIS 虚拟文件夹权限

发布于 2024-09-13 08:15:32 字数 194 浏览 4 评论 0原文

我有一个具有以下结构的网站,用于保存产品图像:

~/fileserver/{user_id}/{file_id}.{file_extension} 

我想限制对每个 {user_id} 文件夹的访问,并只允许特定用户检索该图像。如何做到这一点?我需要在 IIS 中进行一些设置吗?

I have a website with the below structure for saving product images:

~/fileserver/{user_id}/{file_id}.{file_extension} 

I want to restrict access to each {user_id} folder and let only the specific user to retrieve that image. How this can be done? Do I have to set something in IIS?

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

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

发布评论

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

评论(1

何以畏孤独 2024-09-20 08:15:32

编写一个 HttpModule 来检查请求路径。如果路径包含 fileserver/{user_id},并且 user_id 是有效用户,则检查 user_id 是否已通过身份验证。

有许多关于如何执行此操作的教程

Write an HttpModule that checks the request path. If the path contains fileserver/{user_id}, and user_id is a valid user, then check to see if user_id is authenticated.

Many tutorials on how to do this are available.

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