No Description
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 917B

12345678910111213141516171819202122232425
  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. <rule name="301Redirect" stopProcessing="true">
  16. <match url="(.*)" />
  17. <conditions logicalGrouping="MatchAny">
  18. <add input="{HTTP_HOST}" pattern="^gdzcfw\.com$" />
  19. </conditions>
  20. <action type="Redirect" url="http://www.zc10000.com/{R:0}" redirectType="Permanent" />
  21. </rule>
  22. </rules>
  23. </rewrite>
  24. </system.webServer>
  25. </configuration>