12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- 有关如何配置 ASP.NET 应用程序的详细信息,请访问
- https://go.microsoft.com/fwlink/?LinkId=169433
- -->
- <configuration>
- <system.web>
- <compilation debug="true" targetFramework="4.6.1" />
- <httpRuntime targetFramework="4.6.1" />
- </system.web>
- <system.webServer>
- <rewrite>
- <rules>
- <rule name="all root html to index">
- <match url="^[^/]+\.html[\?]{0,1}.*" />
- <action type="Rewrite" url="index.html" />
- </rule>
- </rules>
- </rewrite>
- </system.webServer>
- </configuration>
|