心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.config 721B

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