system.webServer / rewrite-> UrlRewriting

| 我有一个project0ѭ的php项目:
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name=\"Main Rule\" stopProcessing=\"true\">
          <match url=\".*\" />
            <conditions logicalGrouping=\"MatchAll\">
                <add input=\"{REQUEST_FILENAME}\" matchType=\"IsFile\" negate=\"true\" />
                <add input=\"{REQUEST_FILENAME}\" matchType=\"IsDirectory\" negate=\"true\" />
            </conditions>
            <action type=\"Rewrite\" url=\"index.php\" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration> 
但是需要将其安装在IIS6上。想知道是否可以在UrlRewriting.NET上进行配置吗?如何?     
已邀请:
        UrlRewriting.NET的局限性之一是只能重写ASP.NET管道处理的页面和资源,而PHP不能重写。 您将需要第三方工具(例如Iconics IRF或HeliconTech的ISAPI_Rewrite3)来满足您的重写要求。     

要回复问题请先登录注册