I need to convert .htaccess
AddType application/x-httpd-php .txt
to web.config. Could you help me with it? I tried
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="*.txt"
type="php " />
</httpHandlers>
</system.web>
</configuration>
but it doesn't work for me. So at all I need to open txt files like php on IIS.