我有这个上传文件结构链接 localhost:58707/uploads/interaction/5/Chrysanthemum.jpg
我想拒绝所有用户直接访问“~/uploads”..
所以,我把它放在我的 web.config 中,就像我在其他问题中看到的那样:
<location path="~/uploads"> //I've tried '/upload' and 'upload' too.
<system.webServer>
<directoryBrowse enabled="false" />
</system.webServer>
</location>
但它不起作用。我怎样才能做到这一点?