如何通过 web.config 启用特定 IIS 文件夹中的目录列表?
我将其作为我的 images
文件夹中的 web.config
:
<configuration>
<system.webServer>
<directoryBrowse enabled="true" />
</system.webServer>
</configuration>
但没有骰子。
有什么帮助吗?
I have this as my web.config
in my images
folder:
<configuration>
<system.webServer>
<directoryBrowse enabled="true" />
</system.webServer>
</configuration>
But no dice.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 IIS 7 及更高版本上,您可以使用以下内容。
在 IIS 6 上,您必须通过 IIS 管理器进行配置。
On IIS 7 and above you could use the following.
On IIS 6 you'll have to configure it via IIS Manager.