TP伪静态 thinkphp伪静态 Windows系统使用

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="OrgPage" enabled="true" stopProcessing="true">
                    <match url="^(.*)$" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                        <add input="{REQUEST_URI}" pattern="/index\.php/(.*)" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php/{R:1}" />
                </rule>
            </rules>
        </rewrite>
        <handlers>
            <add name="PHP-7.0-7i24.com" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="c:\php\7.0\php-cgi.exe" resourceType="Either" />
        </handlers>
    </system.webServer>
</configuration>