我已在我的asp.net项目中的文件夹(名为Documents)中禁用目录列表,其中包含以下web.config设置。
可行,http://mywebsite.com/Documents/未列出文件。但我希望用户从这个位置打开一个文件。例如,此链接http://mywebsite.com/Documents/file.pdf也会出错。
是否可以从不允许目录列表的目录中打开文件。提前谢谢。
<configuration>
<system.webServer>
<directoryBrowse enabled="false" />
</system.webServer>
</configuration>