fatfree框架的web.config

I want to develop application using Fatfree Framework 3. My development environment is IIS express 7.5 on Windows XP. I can only access / route in the application. I can't access /about route in the example file. I try webroot/about and webroot/index.php/about. Both are not working. I also try web.config file created from .httaccess which is also not working. When I try to any route, I am getting 'No input file specified.' error. I am getting the same error for non existing routes also.

my web.config file (Generated from .httaccess file using online utility. I am getting same web.config file from all online utilities

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="rule 1g" stopProcessing="true">
<match url=".*"  />
<action type="Rewrite" url="/index.php"  appendQueryString="true" />
</rule>
<rule name="rule 2g" stopProcessing="true">
<match url=".*"  />
<action type="Rewrite" url="/-"  />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

Anyone please help me to setup Fatfree Framework on IIS.

i had the same problem using this framework in IIS 7.5 which i resolved using the config below (from https://github.com/finalcut/php_boilerplate ). Replacing your posted web.config with the below should resolve your problem. (you need to have 'URL Rewrite' installed on your server as well)

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
    <rewrite>
        <rules>
            <rule name="fatfree3" stopProcessing="true">
                <match url="." ignoreCase="false" />
                <conditions logicalGrouping="MatchAll">
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
                </conditions>
                <action type="Rewrite" url="index.php" />
            </rule>
        </rules>
    </rewrite>
</system.webServer>