Web.config 599 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. 有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4. https://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <system.web>
  8. <compilation debug="true" targetFramework="4.6.1" />
  9. <httpRuntime targetFramework="4.6.1" />
  10. </system.web>
  11. <system.webServer>
  12. <rewrite>
  13. <rules>
  14. <rule name="all root html to index">
  15. <match url="^[^/]+\.html[\?]{0,1}.*" />
  16. <action type="Rewrite" url="index.html" />
  17. </rule>
  18. </rules>
  19. </rewrite>
  20. </system.webServer>
  21. </configuration>