共计 573 个字符,预计需要花费 2 分钟才能阅读完成。
 <rules>
  <rule name="root_location_rewrite" stopProcessing="true">
      <match ignoreCase="false" url="^(.*)$"/>
      <conditions logicalGrouping="MatchAll">
          <add ignoreCase="false" input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
          <add ignoreCase="false" input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
      </conditions>
      <action appendQueryString="true" type="Rewrite" url="index.php/{R:1}"/>
  </rule>
  <rule name="default_file_rewrite" stopProcessing="true">
      <match ignoreCase="false" url="^$"/>
      <action appendQueryString="true" type="Rewrite" url="index.php?{QUERY_STRING}"/>
  </rule>
</rules>
正文完
  