Web.config 853 B

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