[Collection]IIS 7.5应用Tips
1.IIS7.5启用目录列表
常用于FTP站点,范例:http://ftp.99dev.net
Scenario: Let’s say I want to enable directory browsing for a special directory on my site, how do I enable that? It’s as easy as:
1) create (or edit) the web.config file in your site’s home directory
2) edit it as follows:
<configuration>
<location path="special_directory_name_here">
<system.webServer>
<directoryBrowse enabled="true" />
</system.webServer></location>
</configuration>
最近评论