软件公司开发中IIS 中的rewrite 规则
日期:2022/8/15  发布人:润宇软件  浏览量:
 

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3.     <system.webServer>
  4.         <rewrite>
  5.  <rules>
  6.  <rule name="OrgPage" stopProcessing="true">
  7.  <match url="^(.*)$" />
  8.  <conditions logicalGrouping="MatchAll">
  9.  <add input="{HTTP_HOST}" pattern="^(.*)$" />
  10.  <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
  11.  <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  12.  </conditions>
  13.  <action type="Rewrite" url="index.php/{R:1}" />
  14.  </rule>
  15.  </rules>
  16.  </rewrite>
  17.     </system.webServer>
  18. </configuration>