anandkunal / ToroPHP

Toro is a PHP router for developing RESTful web applications and APIs.
http://toroweb.org
MIT License
1.17k stars 173 forks source link

web.config for iis #93

Closed etvprog1 closed 9 years ago

etvprog1 commented 9 years ago

Here is the Web.config snippet that works for me in IIS. No luck with the posted version.

<rule name="Toro" 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" />
        <add input="{R:1}" pattern="^(index\.php)" ignoreCase="false" negate="true" />
    </conditions>
    <action type="Rewrite" url="/index.php/{R:1}" />
</rule>