1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- 有关如何配置 ASP.NET 应用程序的详细消息,请访问
- http://go.microsoft.com/fwlink/?LinkId=169433
- -->
- <configuration>
- <system.web>
- <compilation debug="true" targetFramework="4.0" />
- </system.web>
- <system.webServer>
- <rewrite>
- <rules>
- <rule name="VT-Index" stopProcessing="true"><match url="^(index|configure|exhibition|install|product).html$" /><action type="Rewrite" url="/{R:1}.aspx" /></rule>
- <rule name="VT-info" stopProcessing="true"><match url="^info_(\d+)_(\d+).html$" /><action type="Rewrite" url="/info.aspx?id={R:1}&cid={R:2}" />
- </rule>
-
- </rules>
- </rewrite>
- <defaultDocument>
- <files>
- <add value="index.html" />
- </files>
- </defaultDocument>
- </system.webServer>
- </configuration>
|