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