首页 > Web服务器 > [Collection]IIS 7.5应用Tips

[Collection]IIS 7.5应用Tips

2010年1月26日 发表评论 阅读评论

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>

 

分类: Web服务器 标签:
  1. 本文目前尚无任何评论.
  1. 本文目前尚无任何 trackbacks 和 pingbacks.