我有一个网站,其中包含以下用于保存产品图片的结构:
~/fileserver/{user_id}/{file_id}.{file_extension}
我想限制对每个{user_id}
文件夹的访问权限,只允许特定用户检索该图像。怎么做到这一点?我是否必须在IIS中设置内容?
答案 0 :(得分:1)
Write an HttpModule检查请求路径。如果路径包含fileserver/{user_id}
,并且user_id
是有效用户,请检查user_id
是否已通过身份验证。