将AddType规则从htaccess转换为web.config

时间:2012-05-30 13:13:04

标签: .htaccess web-config

我需要转换.htaccess

AddType application/x-httpd-php .txt

到web.config。你能帮帮我吗?我试过了

    <configuration>
  <system.web>
    <httpHandlers>
      <add verb="*" path="*.txt" 
         type="php " />
    </httpHandlers>
  </system.web>
</configuration>

但它对我不起作用。所以我需要在IIS上打开像php这样的txt文件。

1 个答案:

答案 0 :(得分:2)

这对我有用:

<configuration>
   <system.webServer>
      <staticContent>
         <mimeMap fileExtension=".syx" mimeType="application/octet-stream" />
         <mimeMap fileExtension=".tab" mimeType="text/plain" />
      </staticContent>
   </system.webServer>
</configuration>

来源:http://www.iis.net/configreference/system.webserver/staticcontent/mimemap