4

我需要转换 .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文件。

4

1 回答 1

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

于 2013-05-13T10:49:48.893 回答