IIS 伪静态 PHP

// <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>

留下评论